--- old/modules/javafx.controls/src/main/java/javafx/scene/control/TreeTableCell.java 2017-03-09 14:44:40.214173955 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/TreeTableCell.java 2017-03-09 14:44:40.098173953 -0800 @@ -61,8 +61,8 @@ * property is set to true (to represent that it is allowable to select * individual cells (and not just rows of cells)). * - *

* + * @param The type of the TableView generic type * @see TreeTableView * @see TreeTableColumn * @see Cell @@ -683,9 +683,10 @@ * Updates the TreeTableView associated with this TreeTableCell. This is typically * only done once when the TreeTableCell is first added to the TreeTableView. * - * @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. + * 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 TreeTableView associated with this TreeTableCell */ public final void updateTreeTableView(TreeTableView tv) { setTreeTableView(tv); @@ -694,9 +695,10 @@ /** * Updates the TreeTableRow associated with this TreeTableCell. * - * @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. + * 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 treeTableRow the TreeTableRow associated with this TreeTableCell */ public final void updateTreeTableRow(TreeTableRow treeTableRow) { this.setTreeTableRow(treeTableRow); @@ -705,9 +707,10 @@ /** * Updates the TreeTableColumn associated with this TreeTableCell. * - * @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. + * 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 col the TreeTableColumn associated with this TreeTableCell */ public final void updateTreeTableColumn(TreeTableColumn col) { // remove style class of existing tree table column, if it is non-null