| |
|
| javax.swing.JTextField org.underworldlabs.swing.table.StringCellEditor
StringCellEditor | public class StringCellEditor extends JTextField implements TableCellEditorValue(Code) | | Simple string value table column cell editor.
author: Takis Diakoumis version: $Revision: 1.6 $ |
Method Summary | |
public String | getEditorValue() Returns the current editor value from the component
defining this object. | public String | getValue() Returns the current editor value string. | public void | resetValue() Resets the editor's value to an empty string. | public void | setValue(String value) Sets the editor's value to that specified. |
StringCellEditor | public StringCellEditor()(Code) | | |
getEditorValue | public String getEditorValue()(Code) | | Returns the current editor value from the component
defining this object.
the editor's value |
getValue | public String getValue()(Code) | | Returns the current editor value string.
|
resetValue | public void resetValue()(Code) | | Resets the editor's value to an empty string.
|
setValue | public void setValue(String value)(Code) | | Sets the editor's value to that specified.
Parameters: value - - the value to be set |
|
|
|