< prev index next >

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

Print this page

        

@@ -59,12 +59,12 @@
  *   returns true for the row / column that this cell represents, and</li>
  *   <li>The {@link javafx.scene.control.TableSelectionModel#cellSelectionEnabledProperty() cell selection mode}
  *   property is set to true (to represent that it is allowable to select
  *   individual cells (and not just rows of cells)).</li>
  * </ol>
- * </p>
  *
+ * @param <S> The type of the TableView generic type
  * @see TreeTableView
  * @see TreeTableColumn
  * @see Cell
  * @see IndexedCell
  * @see TreeTableRow

@@ -681,35 +681,38 @@
 
     /**
      * 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
+     * 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<S> tv) {
         setTreeTableView(tv);
     }
 
     /**
      * Updates the TreeTableRow associated with this TreeTableCell.
      *
-     * @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 treeTableRow the TreeTableRow associated with this TreeTableCell
      */
     public final void updateTreeTableRow(TreeTableRow<S> treeTableRow) {
         this.setTreeTableRow(treeTableRow);
     }
 
     /**
      * Updates the TreeTableColumn associated with this TreeTableCell.
      *
-     * @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 col the TreeTableColumn associated with this TreeTableCell
      */
     public final void updateTreeTableColumn(TreeTableColumn<S,T> col) {
         // remove style class of existing tree table column, if it is non-null
         TreeTableColumn<S,T> oldCol = getTableColumn();
         if (oldCol != null) {
< prev index next >