752753754755756757758759760761762
*/ public String dump() { Document doc = new DocumentImpl(); Node elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); }
821822823824825826827828829830831
*/ public String toString() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } /**
834835836837838839840841842843844
*/ public String toResultString() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc, true); // filtered doc.appendChild(elm); return DOMUtils.toString(doc); } /*
668669670671672673674675676677678
166167168169170171172173174175176
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 { return super.clone();
334335336337338339340341342343344
*/ public String dump() { Document doc = new DocumentImpl(); Element elm = this.toDOM(doc); doc.appendChild(elm); return DOMUtils.toString(doc); } public XRD getFinalXRD()
754755756757758759760761762763764
212213214215216217218219220221222
private String toString( String tag ) { Document doc = new DocumentImpl(); Element elm = this.toXML(doc, tag); doc.appendChild(elm); return DOMUtils.toString(doc); } public String toString() {
344345346347348349350351352353354
413414415416417418419420421422423