< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/Skinnable.java

Print this page

        

@@ -44,18 +44,21 @@
      * {@code Skin}. Every {@code Skin} maintains a back reference to the
      * {@code Control}.
      * <p>
      * A skin may be null.
      *
+     * @return the skin property for this control
      */
     public ObjectProperty<Skin<?>> 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();
 }
< prev index next >