home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / TableExample3.java < prev    next >
Text File  |  1998-05-08  |  5KB  |  107 lines

  1. /*
  2.  * @(#)TableExample3.java    1.4 97/12/03
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. /**
  22.  * An example showing the JTable with a dataModel that is not derived 
  23.  * from a database. We add the optional TableSorter object to give the 
  24.  * JTable the ability to sort.   
  25.  *
  26.  * @version 1.3 10/14/97
  27.  * @author Philip Milne
  28.  */
  29.  
  30. import com.sun.java.swing.*;
  31. import com.sun.java.swing.table.*;
  32.  
  33. import java.awt.event.WindowAdapter;
  34. import java.awt.event.WindowEvent;
  35. import java.awt.Dimension;
  36.  
  37. public class TableExample3 {
  38.  
  39.     public TableExample3() {
  40.         JFrame frame = new JFrame("Table");
  41.         frame.addWindowListener(new WindowAdapter() {
  42.             public void windowClosing(WindowEvent e) {System.exit(0);}});
  43.  
  44.         // Take the dummy data from SwingSet.  
  45.         final String[] names = {"First Name", "Last Name", "Favorite Color", 
  46.                                 "Favorite Number", "Vegetarian"}; 
  47.         final Object[][] data = {
  48.         {"Mark", "Andrews", "Red", new Integer(2), new Boolean(true)},
  49.         {"Tom", "Ball", "Blue", new Integer(99), new Boolean(false)},
  50.         {"Alan", "Chung", "Green", new Integer(838), new Boolean(false)},
  51.         {"Jeff", "Dinkins", "Turquois", new Integer(8), new Boolean(true)},
  52.         {"Amy", "Fowler", "Yellow", new Integer(3), new Boolean(false)},
  53.         {"Brian", "Gerhold", "Green", new Integer(0), new Boolean(false)},
  54.         {"James", "Gosling", "Pink", new Integer(21), new Boolean(false)},
  55.         {"David", "Karlton", "Red", new Integer(1), new Boolean(false)},
  56.         {"Dave", "Kloba", "Yellow", new Integer(14), new Boolean(false)},
  57.         {"Peter", "Korn", "Purple", new Integer(12), new Boolean(false)},
  58.         {"Phil", "Milne", "Purple", new Integer(3), new Boolean(false)},
  59.         {"Dave", "Moore", "Green", new Integer(88), new Boolean(false)},
  60.         {"Hans", "Muller", "Maroon", new Integer(5), new Boolean(false)},
  61.         {"Rick", "Levenson", "Blue", new Integer(2), new Boolean(false)},
  62.         {"Tim", "Prinzing", "Blue", new Integer(22), new Boolean(false)},
  63.         {"Chester", "Rose", "Black", new Integer(0), new Boolean(false)},
  64.         {"Ray", "Ryan", "Gray", new Integer(77), new Boolean(false)},
  65.         {"Georges", "Saab", "Red", new Integer(4), new Boolean(false)},
  66.         {"Willie", "Walker", "Phthalo Blue", new Integer(4), new Boolean(false)},
  67.         {"Kathy", "Walrath", "Blue", new Integer(8), new Boolean(false)},
  68.         {"Arnaud", "Weber", "Green", new Integer(44), new Boolean(false)}
  69.         };
  70.  
  71.         // Create a model of the data.
  72.         TableModel dataModel = new AbstractTableModel() {
  73.             // These methods always need to be implemented. 
  74.             public int getColumnCount() { return names.length; } 
  75.             public int getRowCount() { return data.length;}
  76.             public Object getValueAt(int row, int col) {return data[row][col];}
  77.  
  78.             // The default implementations of these methods in 
  79.             // AbstractTableModel would work, but we can refine them. 
  80.             public String getColumnName(int column) {return names[column];}
  81.             public Class getColumnClass(int col) {return getValueAt(0,col).getClass();}
  82.             public boolean isCellEditable(int row, int col) {return (col==4);} 
  83.             public void setValueAt(Object aValue, int row, int column) {
  84.                 data[row][column] = aValue; 
  85.             }
  86.          }; 
  87.  
  88.         // Instead of making the table display the data as it would normally with:
  89.         // JTable tableView = new JTable(dataModel);  
  90.         // Add a sorter, by using the following three lines instead of the one above. 
  91.         TableSorter  sorter = new TableSorter(dataModel); 
  92.         JTable    tableView = new JTable(sorter); 
  93.         sorter.addMouseListenerToHeaderInTable(tableView); 
  94.  
  95.         JScrollPane scrollpane = JTable.createScrollPaneForTable(tableView);
  96.  
  97.         scrollpane.setPreferredSize(new Dimension(700, 300)); 
  98.         frame.getContentPane().add(scrollpane);
  99.         frame.pack();
  100.         frame.setVisible(true);
  101.     }
  102.     
  103.     public static void main(String[] args) {
  104.         new TableExample3(); 
  105.     }
  106. }
  107.