Searched defs:stopIndex (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java1399 * and returns this value (plus stopIndex).
1401 protected int getCountTo(int stopIndex) { argument
1403 int retCount = stopIndex + 1;
1408 if(aChild.childIndex >= stopIndex)
1423 * <code>stopIndex</code>. This does not include the number
1424 * of children that the child at <code>stopIndex</code> might
1427 protected int getNumExpandedChildrenTo(int stopIndex) { argument
1429 int retCount = stopIndex;
1434 if(aChild.childIndex >= stopIndex)

Completed in 168 milliseconds