< prev index next >

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

Print this page

        

*** 133,142 **** --- 133,143 ---- 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,350 **** /** * 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 * by those implementing new Skins. It is not common * for developers or designers to access this function directly. */ public final void updateTableView(TableView<T> tv) { setTableView(tv); } --- 339,352 ---- /** * Updates the TableView associated with this TableCell. This is typically * only done once when the TableCell is first added to the TableView. * ! * 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 >