API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.swing. AbstractCellEditor View Source
Author(s)
Philip Milne
Since
1.3
Version
1.13 04/07/06 A base class for CellEditors, providing default implementations for the methods in the CellEditor interface except getCellEditorValue(). Like the other abstract implementations in Swing, also manages a list of listeners.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see {@link java.beans.XMLEncoder}.

Serial
Hierarchy
 Object
      AbstractCellEditor
Implements
 CellEditor
 Serializable
Subclasses
Description
publicabstract abstract class AbstractCellEditor
 
See also:   
Constructors
public AbstractCellEditor ()
Methods
Hide/Show inherited methods
public void addCellEditorListener (CellEditorListener l) [Specified in CellEditor]
  Adds a CellEditorListener to the listener list.
public void cancelCellEditing () [Specified in CellEditor]
Calls fireEditingCanceled.
protected void fireEditingCanceled ()
  Notifies all listeners that have registered interest for notification on this event type.
protected void fireEditingStopped ()
  Notifies all listeners that have registered interest for notification on this event type.
public CellEditorListener getCellEditorListeners ()
  Returns an array of all the CellEditorListeners added to this AbstractCellEditor with addCellEditorListener().
public boolean isCellEditable (EventObject e) [Specified in CellEditor]
  Returns true.
public void removeCellEditorListener (CellEditorListener l) [Specified in CellEditor]
  Removes a CellEditorListener from the listener list.
public boolean shouldSelectCell (EventObject anEvent) [Specified in CellEditor]
  Returns true.
public boolean stopCellEditing () [Specified in CellEditor]
  Calls fireEditingStopped and returns true.
Fields
Hide/Show inherited fields
protectedtransient ChangeEvent changeEvent
protected EventListenerList listenerList
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar