public abstract class

AbstractCellEditor

extends Object
implements Serializable CellEditor
java.lang.Object
   ↳ javax.swing.AbstractCellEditor
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

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 XMLEncoder.

Summary

Fields
protected ChangeEvent changeEvent
protected EventListenerList listenerList
Public Constructors
AbstractCellEditor()
Public Methods
void addCellEditorListener(CellEditorListener l)
Adds a CellEditorListener to the listener list.
void cancelCellEditing()
Calls fireEditingCanceled.
CellEditorListener[] getCellEditorListeners()
Returns an array of all the CellEditorListeners added to this AbstractCellEditor with addCellEditorListener().
boolean isCellEditable(EventObject e)
Returns true.
void removeCellEditorListener(CellEditorListener l)
Removes a CellEditorListener from the listener list.
boolean shouldSelectCell(EventObject anEvent)
Returns true.
boolean stopCellEditing()
Calls fireEditingStopped and returns true.
Protected Methods
void fireEditingCanceled()
Notifies all listeners that have registered interest for notification on this event type.
void fireEditingStopped()
Notifies all listeners that have registered interest for notification on this event type.
[Expand]
Inherited Methods
From class java.lang.Object
From interface javax.swing.CellEditor

Fields

protected ChangeEvent changeEvent

protected EventListenerList listenerList

Public Constructors

public AbstractCellEditor ()

Public Methods

public void addCellEditorListener (CellEditorListener l)

Adds a CellEditorListener to the listener list.

Parameters
l the new listener to be added

public void cancelCellEditing ()

Calls fireEditingCanceled.

public CellEditorListener[] getCellEditorListeners ()

Returns an array of all the CellEditorListeners added to this AbstractCellEditor with addCellEditorListener().

Returns
  • all of the CellEditorListeners added or an empty array if no listeners have been added

public boolean isCellEditable (EventObject e)

Returns true.

Parameters
e an event object
Returns
  • true

public void removeCellEditorListener (CellEditorListener l)

Removes a CellEditorListener from the listener list.

Parameters
l the listener to be removed

public boolean shouldSelectCell (EventObject anEvent)

Returns true.

Parameters
anEvent an event object
Returns
  • true

public boolean stopCellEditing ()

Calls fireEditingStopped and returns true.

Returns
  • true

Protected Methods

protected void fireEditingCanceled ()

Notifies all listeners that have registered interest for notification on this event type. The event instance is created lazily.

protected void fireEditingStopped ()

Notifies all listeners that have registered interest for notification on this event type. The event instance is created lazily.