< prev index next >

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

Print this page

        

@@ -61,11 +61,11 @@
      *                                                                         *
      **************************************************************************/
 
     /**
      *
-     * @param control
+     * @param control the control
      */
     public VirtualContainerBase(final C control) {
         super(control);
         flow = createVirtualFlow();
 

@@ -90,10 +90,11 @@
      **************************************************************************/
 
     /**
      * Returns the total number of items in this container, including those
      * that are currently hidden because they are out of view.
+     * @return the total number of items in this container
      */
     protected abstract int getItemCount();
 
     /**
      * This method is called when it is possible that the item count has changed (i.e. scrolling has occurred,
< prev index next >