| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use TableCellEditor | |
|---|---|
| javax.swing | Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. | 
| javax.swing.table | Provides classes and interfaces for dealing with javax.swing.JTable. | 
| Uses of TableCellEditor in javax.swing | 
|---|
| Classes in javax.swing that implement TableCellEditor | |
|---|---|
|  class | DefaultCellEditorThe default editor for table and tree cells. | 
| Fields in javax.swing declared as TableCellEditor | |
|---|---|
| protected  TableCellEditor | JTable.cellEditorThe active cell editor object, that overwrites the screen real estate occupied by the current cell and allows the user to change its contents. | 
| Methods in javax.swing that return TableCellEditor | |
|---|---|
|  TableCellEditor | JTable.getCellEditor()Returns the active cell editor, which is nullif the table
 is not currently editing. | 
|  TableCellEditor | JTable.getCellEditor(int row,
              int column)Returns an appropriate editor for the cell specified by rowandcolumn. | 
|  TableCellEditor | JTable.getDefaultEditor(Class<?> columnClass)Returns the editor to be used when no editor has been set in a TableColumn. | 
| Methods in javax.swing with parameters of type TableCellEditor | |
|---|---|
|  Component | JTable.prepareEditor(TableCellEditor editor,
              int row,
              int column)Prepares the editor by querying the data model for the value and selection state of the cell at row,column. | 
|  void | JTable.setCellEditor(TableCellEditor anEditor)Sets the active cell editor. | 
|  void | JTable.setDefaultEditor(Class<?> columnClass,
                 TableCellEditor editor)Sets a default cell editor to be used if no editor has been set in a TableColumn. | 
| Uses of TableCellEditor in javax.swing.table | 
|---|
| Fields in javax.swing.table declared as TableCellEditor | |
|---|---|
| protected  TableCellEditor | TableColumn.cellEditorThe editor used to edit the data cells of the column. | 
| Methods in javax.swing.table that return TableCellEditor | |
|---|---|
|  TableCellEditor | TableColumn.getCellEditor()Returns the TableCellEditorused by theJTableto edit values for this column. | 
| Methods in javax.swing.table with parameters of type TableCellEditor | |
|---|---|
|  void | TableColumn.setCellEditor(TableCellEditor cellEditor)Sets the editor to used by when a cell in this column is edited. | 
| Constructors in javax.swing.table with parameters of type TableCellEditor | |
|---|---|
| TableColumn(int modelIndex,
            int width,
            TableCellRenderer cellRenderer,
            TableCellEditor cellEditor)Creates and initializes an instance of TableColumnwith the specified model index,
  width, cell renderer, and cell editor;
  allTableColumnconstructors delegate to this one. | |
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.