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

/openjdk7/jdk/src/share/classes/javax/swing/text/
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 81 milliseconds