< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/skin/ScrollPaneSkin.java

Print this page

        

@@ -392,18 +392,20 @@
     }
 
     /**
      * Returns the horizontal {@link ScrollBar} used in this ScrollPaneSkin
      * instance.
+     * @return the horizontal ScrollBar used in this ScrollPaneSkin instance
      */
     public final ScrollBar getHorizontalScrollBar() {
         return hsb;
     }
 
     /**
      * Returns the vertical {@link ScrollBar} used in this ScrollPaneSkin
      * instance.
+     * @return the vertical ScrollBar used in this ScrollPaneSkin instance
      */
     public final ScrollBar getVerticalScrollBar() {
         return vsb;
     }
 
< prev index next >