< prev index next >

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

Print this page

        

@@ -133,10 +133,11 @@
         return tableView == null ? null : tableView.get();
     }
 
     /**
      * The TableView associated with this Cell.
+     * @return the TableView associated with this Cell
      */
     public final ReadOnlyObjectProperty<TableView<T>> tableViewProperty() {
         return tableViewPropertyImpl().getReadOnlyProperty();
     }
 

@@ -338,13 +339,14 @@
 
     /**
      * Updates the TableView associated with this TableCell. This is typically
      * only done once when the TableCell is first added to the TableView.
      *
-     * @expert This function is intended to be used by experts, primarily
+     * Note: This function is intended to be used by experts, primarily
      *         by those implementing new Skins. It is not common
      *         for developers or designers to access this function directly.
+     * @param tv the TableView
      */
     public final void updateTableView(TableView<T> tv) {
         setTableView(tv);
     }
 
< prev index next >