Class AbstractCellEditor
java.lang.Object
javax.swing.AbstractCellEditor
- All Implemented Interfaces:
Serializable, CellEditor
- Direct Known Subclasses:
DefaultCellEditor
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 JavaBeans
has been added to the java.beans package.
Please see XMLEncoder.
- Since:
- 1.3
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ChangeEventThe change event.protected EventListenerListThe list of listeners. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds aCellEditorListenerto the listener list.voidCallsfireEditingCanceled.protected voidNotifies all listeners that have registered interest for notification on this event type.protected voidNotifies all listeners that have registered interest for notification on this event type.Returns an array of all theCellEditorListeners added to this AbstractCellEditor with addCellEditorListener().booleanReturns true.voidRemoves aCellEditorListenerfrom the listener list.booleanshouldSelectCell(EventObject anEvent) Returns true.booleanCallsfireEditingStoppedand returns true.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface CellEditor
getCellEditorValueModifier and TypeMethodDescriptionReturns the value contained in the editor.
-
Field Details
-
listenerList
The list of listeners. -
changeEvent
The change event.
-
-
Constructor Details
-
AbstractCellEditor
protected AbstractCellEditor()Constructor for subclasses to call.
-
-
Method Details
-
isCellEditable
Returns true.- Specified by:
isCellEditablein interfaceCellEditor- Parameters:
e- an event object- Returns:
- true
- See Also:
-
shouldSelectCell
Returns true.- Specified by:
shouldSelectCellin interfaceCellEditor- Parameters:
anEvent- an event object- Returns:
- true
- See Also:
-
stopCellEditing
public boolean stopCellEditing()CallsfireEditingStoppedand returns true.- Specified by:
stopCellEditingin interfaceCellEditor- Returns:
- true
-
cancelCellEditing
public void cancelCellEditing()CallsfireEditingCanceled.- Specified by:
cancelCellEditingin interfaceCellEditor
-
addCellEditorListener
Adds aCellEditorListenerto the listener list.- Specified by:
addCellEditorListenerin interfaceCellEditor- Parameters:
l- the new listener to be added
-
removeCellEditorListener
Removes aCellEditorListenerfrom the listener list.- Specified by:
removeCellEditorListenerin interfaceCellEditor- Parameters:
l- the listener to be removed
-
getCellEditorListeners
Returns an array of all theCellEditorListeners added to this AbstractCellEditor with addCellEditorListener().- Returns:
- all of the
CellEditorListeners added or an empty array if no listeners have been added - Since:
- 1.4
-
fireEditingStopped
protected void fireEditingStopped()Notifies all listeners that have registered interest for notification on this event type. The event instance is created lazily.- See Also:
-
fireEditingCanceled
protected void fireEditingCanceled()Notifies all listeners that have registered interest for notification on this event type. The event instance is created lazily.- See Also:
-