AbstractCellEditor (Java Platform SE 8 ) (original) (raw)
- javax.swing.AbstractCellEditor
All Implemented Interfaces:
Serializable, CellEditor
Direct Known Subclasses:
DefaultCellEditor
public abstract class AbstractCellEditor
extends Object
implements CellEditor, Serializable
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
Fields
Modifier and Type Field Description protected ChangeEvent changeEvent protected EventListenerList listenerList Constructor Summary
Constructors
Constructor Description AbstractCellEditor() Method Summary
All Methods Instance Methods Concrete Methods
Modifier and Type Method Description void addCellEditorListener(CellEditorListener l) Adds a CellEditorListener to the listener list. void cancelCellEditing() 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. 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. * ### Methods inherited from class java.lang.[Object](../../java/lang/Object.html "class in java.lang") `[clone](../../java/lang/Object.html#clone--), [equals](../../java/lang/Object.html#equals-java.lang.Object-), [finalize](../../java/lang/Object.html#finalize--), [getClass](../../java/lang/Object.html#getClass--), [hashCode](../../java/lang/Object.html#hashCode--), [notify](../../java/lang/Object.html#notify--), [notifyAll](../../java/lang/Object.html#notifyAll--), [toString](../../java/lang/Object.html#toString--), [wait](../../java/lang/Object.html#wait--), [wait](../../java/lang/Object.html#wait-long-), [wait](../../java/lang/Object.html#wait-long-int-)` * ### Methods inherited from interface javax.swing.[CellEditor](../../javax/swing/CellEditor.html "interface in javax.swing") `[getCellEditorValue](../../javax/swing/CellEditor.html#getCellEditorValue--)`
Field Detail
* #### listenerList protected [EventListenerList](../../javax/swing/event/EventListenerList.html "class in javax.swing.event") listenerList * #### changeEvent protected transient [ChangeEvent](../../javax/swing/event/ChangeEvent.html "class in javax.swing.event") changeEvent
Constructor Detail
* #### AbstractCellEditor public AbstractCellEditor()
Method Detail
* #### isCellEditable public boolean isCellEditable([EventObject](../../java/util/EventObject.html "class in java.util") e) Returns true. Specified by: `[isCellEditable](../../javax/swing/CellEditor.html#isCellEditable-java.util.EventObject-)` in interface `[CellEditor](../../javax/swing/CellEditor.html "interface in javax.swing")` Parameters: `e` \- an event object Returns: true See Also: [CellEditor.shouldSelectCell(java.util.EventObject)](../../javax/swing/CellEditor.html#shouldSelectCell-java.util.EventObject-) * #### shouldSelectCell public boolean shouldSelectCell([EventObject](../../java/util/EventObject.html "class in java.util") anEvent) Returns true. Specified by: `[shouldSelectCell](../../javax/swing/CellEditor.html#shouldSelectCell-java.util.EventObject-)` in interface `[CellEditor](../../javax/swing/CellEditor.html "interface in javax.swing")` Parameters: `anEvent` \- an event object Returns: true See Also: [CellEditor.isCellEditable(java.util.EventObject)](../../javax/swing/CellEditor.html#isCellEditable-java.util.EventObject-) * #### stopCellEditing public boolean stopCellEditing() Calls `fireEditingStopped` and returns true. Specified by: `[stopCellEditing](../../javax/swing/CellEditor.html#stopCellEditing--)` in interface `[CellEditor](../../javax/swing/CellEditor.html "interface in javax.swing")` Returns: true * #### cancelCellEditing public void cancelCellEditing() Calls `fireEditingCanceled`. Specified by: `[cancelCellEditing](../../javax/swing/CellEditor.html#cancelCellEditing--)` in interface `[CellEditor](../../javax/swing/CellEditor.html "interface in javax.swing")` * #### addCellEditorListener public void addCellEditorListener([CellEditorListener](../../javax/swing/event/CellEditorListener.html "interface in javax.swing.event") l) Adds a `CellEditorListener` to the listener list. Specified by: `[addCellEditorListener](../../javax/swing/CellEditor.html#addCellEditorListener-javax.swing.event.CellEditorListener-)` in interface `[CellEditor](../../javax/swing/CellEditor.html "interface in javax.swing")` Parameters: `l` \- the new listener to be added * #### removeCellEditorListener public void removeCellEditorListener([CellEditorListener](../../javax/swing/event/CellEditorListener.html "interface in javax.swing.event") l) Removes a `CellEditorListener` from the listener list. Specified by: `[removeCellEditorListener](../../javax/swing/CellEditor.html#removeCellEditorListener-javax.swing.event.CellEditorListener-)` in interface `[CellEditor](../../javax/swing/CellEditor.html "interface in javax.swing")` Parameters: `l` \- the listener to be removed * #### getCellEditorListeners public [CellEditorListener](../../javax/swing/event/CellEditorListener.html "interface in javax.swing.event")[] getCellEditorListeners() Returns an array of all the `CellEditorListener`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: [EventListenerList](../../javax/swing/event/EventListenerList.html "class in javax.swing.event") * #### 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: [EventListenerList](../../javax/swing/event/EventListenerList.html "class in javax.swing.event")
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2025, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.