/[classpath]/classpath/javax/swing/JTable.java
ViewVC logotype

Diff of /classpath/javax/swing/JTable.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mark, Tue Apr 30 21:37:27 2002 UTC revision 1.3 by mkoch, Tue Apr 29 12:27:26 2003 UTC
# Line 36  obligated to do so.  If you do not wish Line 36  obligated to do so.  If you do not wish
36  exception statement from your version. */  exception statement from your version. */
37    
38  package javax.swing;  package javax.swing;
39  /**  
40   * STUBBED  import java.awt.Dimension;
41   */  import java.awt.Rectangle;
42    import java.util.Vector;
43    import javax.accessibility.Accessible;
44    import javax.swing.event.ChangeEvent;
45    import javax.swing.event.CellEditorListener;
46    import javax.swing.event.ListSelectionEvent;
47    import javax.swing.event.ListSelectionListener;
48    import javax.swing.event.TableColumnModelEvent;
49    import javax.swing.event.TableColumnModelListener;
50    import javax.swing.event.TableModelEvent;
51    import javax.swing.event.TableModelListener;
52    import javax.swing.table.TableModel;
53    import javax.swing.table.TableColumnModel;
54    import javax.swing.table.DefaultTableModel;
55    
56  public class JTable extends JComponent  public class JTable extends JComponent
57  /*implements TableModelListener, Scrollable, TableColumnModelListener,    implements TableModelListener, Scrollable, TableColumnModelListener,
58               ListSelectionListener, CellEditorListener, Accessible*/               ListSelectionListener, CellEditorListener, Accessible
59  {  {
60      public static final int AUTO_RESIZE_ALL_COLUMNS = 4;
61      public static final int AUTO_RESIZE_LAST_COLUMN = 3;
62      public static final int AUTO_RESIZE_NEXT_COLUMN = 1;
63      public static final int AUTO_RESIZE_OFF = 0;
64      public static final int AUTO_RESIZE_SUBSEQUENT_COLUMNS = 2;
65      
66      public JTable ()
67      {
68        throw new Error ("Not implemented");
69      }
70    
71      public JTable (int numRows, int numColumns)
72      {
73        throw new Error ("Not implemented");
74      }
75    
76      public JTable (Object[][] rowData, Object[] columnNames)
77      {
78        throw new Error ("Not implemented");
79      }
80    
81      public JTable (TableModel dm)
82      {
83        throw new Error ("Not implemented");
84      }
85    
86      public JTable (TableModel dm, TableColumnModel cm)
87      {
88        throw new Error ("Not implemented");
89      }
90    
91      public JTable (TableModel dm, TableColumnModel cm, ListSelectionModel sm)
92      {
93        throw new Error ("Not implemented");
94      }
95    
96      public JTable (Vector rowData, Vector columnNames)
97      {
98        throw new Error ("Not implemented");
99      }
100    
101      public void columnAdded (TableColumnModelEvent event)
102      {
103        throw new Error ("Not implemented");
104      }
105    
106      public void columnMarginChanged (ChangeEvent event)
107      {
108        throw new Error ("Not implemented");
109      }
110      
111      public void columnMoved (TableColumnModelEvent event)
112      {
113        throw new Error ("Not implemented");
114      }
115      
116      public void columnRemoved (TableColumnModelEvent event)
117      {
118        throw new Error ("Not implemented");
119      }
120      
121      public void columnSelectionChanged (ListSelectionEvent event)
122      {
123        throw new Error ("Not implemented");
124      }
125    
126      public void editingCanceled (ChangeEvent event)
127      {
128        throw new Error ("Not implemented");
129      }
130    
131      public void editingStopped (ChangeEvent event)
132      {
133        throw new Error ("Not implemented");
134      }
135    
136      public TableColumnModel getColumnModel ()
137      {
138        throw new Error ("Not implemented");
139      }
140      
141      public Dimension getPreferredScrollableViewportSize ()
142      {
143        throw new Error ("Not implemented");
144      }
145    
146      public int getScrollableBlockIncrement (Rectangle visibleRect, int orientation, int direction)
147      {
148        throw new Error ("Not implemented");
149      }
150    
151      public boolean getScrollableTracksViewportHeight ()
152      {
153        throw new Error ("Not implemented");
154      }
155      
156      public boolean getScrollableTracksViewportWidth ()
157      {
158        throw new Error ("Not implemented");
159      }
160    
161      public int getScrollableUnitIncrement (Rectangle visibleRect, int orientation, int direction)
162      {
163        throw new Error ("Not implemented");
164      }
165    
166      public int getSelectedRow ()
167      {
168        throw new Error ("Not implemented");
169      }
170      
171      public ListSelectionModel getSelectionModel ()
172      {
173        throw new Error ("Not implemented");
174      }
175    
176      public void tableChanged (TableModelEvent event)
177      {
178        throw new Error ("Not implemented");
179      }
180    
181      public void setModel (TableModel model)
182      {
183        throw new Error ("Not implemented");
184      }
185    
186      public void setSelectionMode (int selectionMode)
187      {
188        throw new Error ("Not implemented");
189      }
190    
191      public void setSelectionModel (ListSelectionModel model)
192      {
193        throw new Error ("Not implemented");
194      }
195    
196      public void setShowGrid (boolean showGrid)
197      {
198        throw new Error ("Not implemented");
199      }
200    
201      public void valueChanged (ListSelectionEvent event)
202      {
203        throw new Error ("Not implemented");
204      }
205  } // class JTable  } // class JTable

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26