MCPcopy Create free account
hub / github.com/OpenSourcePhysics/osp / getRowCount

Method getRowCount

unused/javax/swing/JTree.java:1624–1630  ·  view source on GitHub ↗

Returns the number of viewable nodes. A node is viewable if all of its parents are expanded. The root is only included in this count if isRootVisible() is true. This returns 0 if the UI has not been set. @return the number of viewable nodes

()

Source from the content-addressed store, hash-verified

1622 * @return the number of viewable nodes
1623 */
1624 public int getRowCount() {
1625 TreeUI tree = getUI();
1626
1627 if(tree != null)
1628 return tree.getRowCount(this);
1629 return 0;
1630 }
1631
1632 /**
1633 * Selects the node identified by the specified path. If any

Callers 4

dropLocationForPointMethod · 0.95
getPathBetweenRowsMethod · 0.95
getNextMatchMethod · 0.95

Calls 1

getUIMethod · 0.95

Tested by

no test coverage detected