Class RmaCellEditor

java.lang.Object
javax.swing.AbstractCellEditor
rma.swing.table.RmaCellEditor
All Implemented Interfaces:
Serializable, CellEditor, TableCellEditor, TreeCellEditor
Direct Known Subclasses:
RmaJTable.OneClickCheckBoxEditor

public class RmaCellEditor extends AbstractCellEditor implements TableCellEditor, TreeCellEditor
The editor for table and tree cells.
See Also:
  • Field Details

    • editorComponent

      protected JComponent editorComponent
    • delegate

      protected RmaCellEditor.EditorDelegate delegate
    • clickCountToStart

      protected int clickCountToStart
    • _unitSystem

      protected int _unitSystem
    • _paramScaleId

      protected int _paramScaleId
    • _scaleFactor

      protected double _scaleFactor
  • Constructor Details

    • RmaCellEditor

      public RmaCellEditor()
    • RmaCellEditor

      public RmaCellEditor(JTextField textField)
    • RmaCellEditor

      public RmaCellEditor(RmaJDecimalField textField)
      Constructs a RMACellEditor that uses a text field.
      Parameters:
      textField - a JTextField object ...
    • RmaCellEditor

      public RmaCellEditor(RmaJIntegerField textField)
      Constructs a RMACellEditor that uses a text field.
      Parameters:
      textField - a RmaIntegerField object ...
    • RmaCellEditor

      public RmaCellEditor(JTextArea textArea, boolean addScrollPane)
      Constructs a RMACellEditor that uses a text Area.
      Parameters:
      textArea - a JTextArea object ...
    • RmaCellEditor

      public RmaCellEditor(RmaJDescriptionField descField)
      Constructs a RMACellEditor that uses a text Area.
      Parameters:
      descField - a JTextArea object ...
    • RmaCellEditor

      public RmaCellEditor(JToggleButton checkBoxOrRadio)
      Constructs a RMACellEditor object that uses a check box.
      Parameters:
      checkBoxOrRadio - a JCheckBox object ...
    • RmaCellEditor

      public RmaCellEditor(JComboBox comboBox)
      Constructs a RMACellEditor object that uses a combo box.
      Parameters:
      comboBox - a JComboBox object ...
    • RmaCellEditor

      public RmaCellEditor(JButton button)
  • Method Details