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 ChangeEvent
The change event.protected EventListenerList
The list of listeners. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds aCellEditorListener
to the listener list.void
CallsfireEditingCanceled
.protected void
Notifies all listeners that have registered interest for notification on this event type.protected void
Notifies all listeners that have registered interest for notification on this event type.Returns an array of all theCellEditorListener
s added to this AbstractCellEditor with addCellEditorListener().boolean
Returns true.void
Removes aCellEditorListener
from the listener list.boolean
shouldSelectCell
(EventObject anEvent) Returns true.boolean
CallsfireEditingStopped
and returns true.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
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
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(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 void
wait
(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
getCellEditorValue
Modifier 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:
isCellEditable
in interfaceCellEditor
- Parameters:
e
- an event object- Returns:
- true
- See Also:
-
shouldSelectCell
Returns true.- Specified by:
shouldSelectCell
in interfaceCellEditor
- Parameters:
anEvent
- an event object- Returns:
- true
- See Also:
-
stopCellEditing
public boolean stopCellEditing()CallsfireEditingStopped
and returns true.- Specified by:
stopCellEditing
in interfaceCellEditor
- Returns:
- true
-
cancelCellEditing
public void cancelCellEditing()CallsfireEditingCanceled
.- Specified by:
cancelCellEditing
in interfaceCellEditor
-
addCellEditorListener
Adds aCellEditorListener
to the listener list.- Specified by:
addCellEditorListener
in interfaceCellEditor
- Parameters:
l
- the new listener to be added
-
removeCellEditorListener
Removes aCellEditorListener
from the listener list.- Specified by:
removeCellEditorListener
in interfaceCellEditor
- Parameters:
l
- the listener to be removed
-
getCellEditorListeners
Returns an array of all theCellEditorListener
s added to this AbstractCellEditor with addCellEditorListener().- Returns:
- all of the
CellEditorListener
s 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:
-