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

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElementIterator.java154 StackItem clonee = (StackItem)item.clone();
155 it.elementStack.push(clonee);
H A DDefaultStyledDocument.java2115 * @param clonee the element to be cloned
2118 public Element clone(Element parent, Element clonee) { argument
2119 if (clonee.isLeaf()) {
2120 return createLeafElement(parent, clonee.getAttributes(),
2121 clonee.getStartOffset(),
2122 clonee.getEndOffset());
2124 Element e = createBranchElement(parent, clonee.getAttributes());
2125 int n = clonee.getElementCount();
2128 children[i] = clone(e, clonee.getElement(i));
2139 Element cloneAsNecessary(Element parent, Element clonee, in argument
[all...]

Completed in 36 milliseconds