220221222223224225226227228229230
*/ public String dump() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } // dump() } // Class: Attribute
413414415416417418419420421422423
*/ public String dump() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } // dump() /*
*/ public String dump() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } // dump() } // Class: NameID
*/ public String toString() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } /**
426427428429430431432433434435436
*/ public String toResultString() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc, true); // filtered doc.appendChild(elm); return DOMUtils.toString(doc); }
146147148149150151152153154155156
protected String toString( String tag ) { Document doc = new DocumentImpl(); Element elm = this.toXML(doc, tag); doc.appendChild(elm); return DOMUtils.toString(doc); } public Object clone() throws CloneNotSupportedException {
189190191192193194195196197
public String toString() { Document doc = new DocumentImpl(); Element elm = this.toXML(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } }
821822823824825826827828829830831
834835836837838839840841842843844
*/ public String toResultString() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc, true); // filtered doc.appendChild(elm); return DOMUtils.toString(doc); } /*
830831832833834835836837838839840
*/ public String dump() { Document doc = new DocumentImpl(); Node elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } // dump() /**