--- old/modules/javafx.controls/src/main/java/javafx/scene/control/ScrollToEvent.java 2017-03-09 14:44:27.850173736 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/ScrollToEvent.java 2017-03-09 14:44:27.734173734 -0800 @@ -54,6 +54,7 @@ /** * This event occurs if the user requests scrolling a given index into view. + * @return the scroll to event type */ public static EventType> scrollToTopIndex() { return SCROLL_TO_TOP_INDEX; @@ -65,6 +66,8 @@ /** * This event occurs if the user requests scrolling a {@link TableColumnBase} * (i.e. {@link TableColumn} or {@link TreeTableColumn}) into view. + * @param the type + * @return the scroll to event type */ @SuppressWarnings("unchecked") public static > EventType> scrollToColumn() { @@ -85,7 +88,7 @@ * @param source the event source which sent the event * @param target the event source which sent the event * @param type the event type - * @param target the target of the scroll to operation + * @param scrollTarget the target of the scroll to operation */ public ScrollToEvent(@NamedArg("source") Object source, @NamedArg("target") EventTarget target, @NamedArg("type") EventType> type, @NamedArg("scrollTarget") T scrollTarget) { super(source, target, type);