Package jaxx.runtime.swing.editor.cell
Class NumberCellEditor<E extends Number>
- java.lang.Object
-
- javax.swing.AbstractCellEditor
-
- jaxx.runtime.swing.editor.cell.NumberCellEditor<E>
-
- All Implemented Interfaces:
FocusListener,Serializable,EventListener,CellEditor,AncestorListener,TableCellEditor
@Deprecated public class NumberCellEditor<E extends Number> extends AbstractCellEditor implements TableCellEditor, FocusListener, AncestorListener
Deprecated.since 2.17, prefer useorg.nuiton.jaxx.widgets.editor.cell.NumberCellEditor.- Author:
- Sylvain Lletellier
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected NumberEditornumberEditorDeprecated.-
Fields inherited from class javax.swing.AbstractCellEditor
changeEvent, listenerList
-
-
Constructor Summary
Constructors Constructor Description NumberCellEditor(Class<E> type, boolean useSign)Deprecated.constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidancestorAdded(AncestorEvent event)Deprecated.voidancestorMoved(AncestorEvent event)Deprecated.voidancestorRemoved(AncestorEvent event)Deprecated.voidfocusGained(FocusEvent e)Deprecated.voidfocusLost(FocusEvent e)Deprecated.EgetCellEditorValue()Deprecated.NumberEditorgetNumberEditor()Deprecated.ComponentgetTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column)Deprecated.booleanstopCellEditing()Deprecated.-
Methods inherited from class javax.swing.AbstractCellEditor
addCellEditorListener, cancelCellEditing, fireEditingCanceled, fireEditingStopped, getCellEditorListeners, isCellEditable, removeCellEditorListener, shouldSelectCell
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.swing.CellEditor
addCellEditorListener, cancelCellEditing, isCellEditable, removeCellEditorListener, shouldSelectCell
-
-
-
-
Field Detail
-
numberEditor
protected final NumberEditor numberEditor
Deprecated.
-
-
Method Detail
-
getTableCellEditorComponent
public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column)
Deprecated.- Specified by:
getTableCellEditorComponentin interfaceTableCellEditor
-
getNumberEditor
public NumberEditor getNumberEditor()
Deprecated.
-
getCellEditorValue
public E getCellEditorValue()
Deprecated.- Specified by:
getCellEditorValuein interfaceCellEditor
-
focusGained
public void focusGained(FocusEvent e)
Deprecated.- Specified by:
focusGainedin interfaceFocusListener
-
focusLost
public void focusLost(FocusEvent e)
Deprecated.- Specified by:
focusLostin interfaceFocusListener
-
ancestorAdded
public void ancestorAdded(AncestorEvent event)
Deprecated.- Specified by:
ancestorAddedin interfaceAncestorListener
-
ancestorRemoved
public void ancestorRemoved(AncestorEvent event)
Deprecated.- Specified by:
ancestorRemovedin interfaceAncestorListener
-
ancestorMoved
public void ancestorMoved(AncestorEvent event)
Deprecated.- Specified by:
ancestorMovedin interfaceAncestorListener
-
stopCellEditing
public boolean stopCellEditing()
Deprecated.- Specified by:
stopCellEditingin interfaceCellEditor- Overrides:
stopCellEditingin classAbstractCellEditor
-
-