| java.lang.Object javax.swing.AbstractCellEditor org.apache.jmeter.gui.util.TextAreaTableCellEditor
Field Summary | |
protected int | clickCountToStart An integer specifying the number of clicks needed to start editing. | protected EditorDelegate | delegate The delegate class which handles all methods sent from the
CellEditor . | protected JTextArea | editorComponent The Swing component being edited. |
clickCountToStart | protected int clickCountToStart(Code) | | An integer specifying the number of clicks needed to start editing. Even
if clickCountToStart is defined as zero, it will not
initiate until a click occurs.
|
delegate | protected EditorDelegate delegate(Code) | | The delegate class which handles all methods sent from the
CellEditor .
|
editorComponent | protected JTextArea editorComponent(Code) | | The Swing component being edited.
|
TextAreaTableCellEditor | public TextAreaTableCellEditor()(Code) | | Constructs a TableCellEditor that uses a text field.
|
cancelCellEditing | public void cancelCellEditing()(Code) | | Forwards the message from the CellEditor to the
delegate .
See Also: EditorDelegate.cancelCellEditing |
getCellEditorValue | public Object getCellEditorValue()(Code) | | Forwards the message from the CellEditor to the
delegate .
See Also: EditorDelegate.getCellEditorValue |
getClickCountToStart | public int getClickCountToStart()(Code) | | Returns the number of clicks needed to start editing.
the number of clicks needed to start editing |
getComponent | public Component getComponent()(Code) | | Returns a reference to the editor component.
the editor Component |
getTableCellEditorComponent | public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column)(Code) | | Implements the TableCellEditor interface.
|
getTreeCellEditorComponent | public Component getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row)(Code) | | Implements the TreeCellEditor interface.
|
isCellEditable | public boolean isCellEditable(EventObject anEvent)(Code) | | Forwards the message from the CellEditor to the
delegate .
See Also: EditorDelegate.isCellEditable(EventObject) |
setClickCountToStart | public void setClickCountToStart(int count)(Code) | | Specifies the number of clicks needed to start editing.
Parameters: count - an int specifying the number of clicks needed to start editing See Also: TextAreaTableCellEditor.getClickCountToStart |
shouldSelectCell | public boolean shouldSelectCell(EventObject anEvent)(Code) | | Forwards the message from the CellEditor to the
delegate .
See Also: EditorDelegate.shouldSelectCell(EventObject) |
stopCellEditing | public boolean stopCellEditing()(Code) | | Forwards the message from the CellEditor to the
delegate .
See Also: EditorDelegate.stopCellEditing |
|
|