< prev index next >

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

Print this page

        

@@ -87,23 +87,27 @@
      *                                                                         *
      **************************************************************************/
 
     /**
      * The row that this TablePosition represents in the TableView.
+     * @return the row that this TablePosition represents in the TableView
      */
     public int getRow() {
         return row;
     }
 
     /**
      * The column index that this TablePosition represents in the TableView. It
      * is -1 if the TableView or TableColumn instances are null.
+     * @return the column index that this TablePosition represents in the
+     * TableView
      */
     public abstract int getColumn();
 
     /**
      * The TableColumn that this TablePosition represents in the TableView.
+     * @return the TableColumn that this TablePosition represents in the TableView
      */
     public TC getTableColumn() {
         return tableColumnRef.get();
     }
 
< prev index next >