--- old/modules/javafx.controls/src/main/java/javafx/scene/control/TreeView.java 2017-08-04 12:29:57.000000000 +1200 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/TreeView.java 2017-08-04 12:29:56.000000000 +1200 @@ -179,7 +179,7 @@ * you then handle the writeback to the property (or the relevant data source), * nothing will happen. You can work around this by using the * {@link TreeView#addEventHandler(javafx.event.EventType, javafx.event.EventHandler)} - * method to add a {@link TreeView#EDIT_COMMIT_EVENT} {@link EventType} with + * method to add a {@link TreeView#editCommitEvent()} {@link EventType} with * your desired {@link EventHandler} as the second argument. Using this method, * you will not replace the default implementation, but you will be notified when * an edit commit has occurred.

@@ -206,8 +206,8 @@ /** * An EventType that indicates some edit event has occurred. It is the parent - * type of all other edit events: {@link #editStartEvent}, - * {@link #editCommitEvent} and {@link #editCancelEvent}. + * type of all other edit events: {@link #editStartEvent()}, + * {@link #editCommitEvent()} and {@link #editCancelEvent()}. * * @param the type of the TreeItem instances used in this TreeView * @return An EventType that indicates some edit event has occurred. @@ -1212,8 +1212,8 @@ /** * Creates a new EditEvent instance to represent an edit event. This - * event is used for {@link #EDIT_START_EVENT}, - * {@link #EDIT_COMMIT_EVENT} and {@link #EDIT_CANCEL_EVENT} types. + * event is used for {@link #editStartEvent()}, + * {@link #editCommitEvent()} and {@link #editCancelEvent()} types. * @param source the source * @param eventType the eventType * @param treeItem the treeItem