- java.lang.Object
- 
- java.util.EventObject
- 
- javafx.event.Event
- 
- javafx.scene.control.TreeView.EditEvent<T>
 
 
 
- 
- Type Parameters:
- T- The type of the input, which is the same type as the TreeView itself.
 - All Implemented Interfaces:
- Serializable,- Cloneable
 
 public static class TreeView.EditEvent<T> extends Event AnEventsubclass used specifically in TreeView for representing edit-related events. It provides additional API to easily access the TreeItem that the edit event took place on, as well as the input provided by the end user.- Since:
- JavaFX 2.0
- See Also:
- Serialized Form
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TgetNewValue()Returns the new value input into the TreeItem by the end user.TgetOldValue()Returns the old value that existed in the TreeItem prior to the current edit event.TreeView<T>getSource()Returns the TreeView upon which the edit took place.TreeItem<T>getTreeItem()Returns theTreeItemupon which the edit took place.- 
Methods inherited from class javafx.event.Eventclone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed
 - 
Methods inherited from class java.util.EventObjecttoString
 
- 
 
- 
- 
- 
Field Detail- 
ANYpublic static final EventType<?> ANY Common supertype for all edit event types.- Since:
- JavaFX 8.0
 
 
- 
 - 
Constructor Detail- 
EditEventpublic EditEvent(TreeView<T> source, EventType<? extends TreeView.EditEvent> eventType, TreeItem<T> treeItem, T oldValue, T newValue) Creates a new EditEvent instance to represent an edit event. This event is used forTreeView.editStartEvent(),TreeView.editCommitEvent()andTreeView.editCancelEvent()types.- Parameters:
- source- the source
- eventType- the eventType
- treeItem- the treeItem
- oldValue- the oldValue
- newValue- the newValue
 
 
- 
 - 
Method Detail- 
getSourcepublic TreeView<T> getSource() Returns the TreeView upon which the edit took place.- Overrides:
- getSourcein class- EventObject
 
 - 
getTreeItempublic TreeItem<T> getTreeItem() Returns theTreeItemupon which the edit took place.- Returns:
- the TreeItemupon which the edit took place
 
 - 
getNewValuepublic T getNewValue() Returns the new value input into the TreeItem by the end user.- Returns:
- the new value input into the TreeItem by the end user
 
 - 
getOldValuepublic T getOldValue() Returns the old value that existed in the TreeItem prior to the current edit event.- Returns:
- the old value that existed in the TreeItem prior to the current edit event
 
 
- 
 
-