--- old/modules/javafx.controls/src/main/java/javafx/scene/control/Control.java 2017-03-09 14:44:18.334173568 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/Control.java 2017-03-09 14:44:18.230173566 -0800 @@ -223,6 +223,7 @@ * {@code Control} via the {@link Skin#getSkinnable()} method. *

* A skin may be null. + * @return the skin property for this control */ @Override public final ObjectProperty> skinProperty() { return skin; } @Override public final void setSkin(Skin value) { @@ -342,6 +343,7 @@ // --- tooltip /** * The ToolTip for this control. + * @return the tool tip for this control */ public final ObjectProperty tooltipProperty() { if (tooltip == null) { @@ -918,6 +920,7 @@ * UI controls are focus traversable, so this method is overridden in Control * to set the initial traversable state to true. * + * @return the initial focus traversable state of this control * @since 9 */ @Override protected Boolean getInitialFocusTraversable() {