Searched refs:tempStacks (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java74 private Stack<Stack<TreePath>> tempStacks; field in class:FixedHeightLayoutCache
79 tempStacks = new Stack<Stack<TreePath>>();
700 if(tempStacks.size() == 0) {
704 paths = tempStacks.pop();
729 tempStacks.push(paths);
H A DVariableHeightLayoutCache.java87 private Stack<Stack<TreePath>> tempStacks; field in class:VariableHeightLayoutCache
92 tempStacks = new Stack<Stack<TreePath>>();
829 if(tempStacks.size() == 0) {
833 paths = tempStacks.pop();
870 tempStacks.push(paths);

Completed in 28 milliseconds