--- old/modules/javafx.controls/src/main/java/javafx/scene/control/Skinnable.java 2017-03-09 14:44:29.642173768 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/Skinnable.java 2017-03-09 14:44:29.526173766 -0800 @@ -46,16 +46,19 @@ *

* A skin may be null. * + * @return the skin property for this control */ public ObjectProperty> skinProperty(); /** * Sets the skin that will render this {@link Control} + * @param value the skin value for this control */ public void setSkin(Skin value); /** * Returns the skin that renders this {@link Control} + * @return the skin for this control */ public Skin getSkin(); }