< prev index next >

modules/javafx.graphics/src/main/java/javafx/scene/AccessibleAttribute.java

Print this page
rev 10598 : 8185767: Fix broken links in Javadocs


 359      * <li>Needs notify: no </li>
 360      * <li>Return Type: {@link Integer} </li>
 361      * <li>Parameters: </li>
 362      * </ul>
 363      */
 364     ITEM_COUNT(Integer.class),
 365 
 366     /**
 367      * Returns the index for the node.
 368      * <ul>
 369      * <li>Used by: ListItem, TableRow, and others </li>
 370      * <li>Needs notify: no </li>
 371      * <li>Return Type: {@link Integer} </li>
 372      * <li>Parameters: </li>
 373      * </ul>
 374      */
 375     INDEX(Integer.class),
 376 
 377     /**
 378      * Returns the node that is the label for this node.
 379      * <p>When {@link javafx.scene.control.Label#labelFor} is set,
 380      * the default implementation of {@code LABELED_BY} uses this
 381      * relationship to return the appropriate node to the screen
 382      * reader.</p>
 383      * <ul>
 384      * <li>Used by: Node </li>
 385      * <li>Needs notify: no </li>
 386      * <li>Return Type: {@link Node} </li>
 387      * <li>Parameters: </li>
 388      * </ul>
 389      */
 390     LABELED_BY(Node.class),
 391 
 392     /**
 393      * Returns true if the node is a leaf element, otherwise false.
 394      * <ul>
 395      * <li>Used by: TreeItem and TreeTableRow </li>
 396      * <li>Needs notify: no </li>
 397      * <li>Return Type: {@link Boolean} </li>
 398      * <li>Parameters: </li>
 399      * </ul>




 359      * <li>Needs notify: no </li>
 360      * <li>Return Type: {@link Integer} </li>
 361      * <li>Parameters: </li>
 362      * </ul>
 363      */
 364     ITEM_COUNT(Integer.class),
 365 
 366     /**
 367      * Returns the index for the node.
 368      * <ul>
 369      * <li>Used by: ListItem, TableRow, and others </li>
 370      * <li>Needs notify: no </li>
 371      * <li>Return Type: {@link Integer} </li>
 372      * <li>Parameters: </li>
 373      * </ul>
 374      */
 375     INDEX(Integer.class),
 376 
 377     /**
 378      * Returns the node that is the label for this node.
 379      * <p>When {@link javafx.scene.control.Label#labelForProperty() labelFor} is set,
 380      * the default implementation of {@code LABELED_BY} uses this
 381      * relationship to return the appropriate node to the screen
 382      * reader.</p>
 383      * <ul>
 384      * <li>Used by: Node </li>
 385      * <li>Needs notify: no </li>
 386      * <li>Return Type: {@link Node} </li>
 387      * <li>Parameters: </li>
 388      * </ul>
 389      */
 390     LABELED_BY(Node.class),
 391 
 392     /**
 393      * Returns true if the node is a leaf element, otherwise false.
 394      * <ul>
 395      * <li>Used by: TreeItem and TreeTableRow </li>
 396      * <li>Needs notify: no </li>
 397      * <li>Return Type: {@link Boolean} </li>
 398      * <li>Parameters: </li>
 399      * </ul>


< prev index next >