1 16 package com.google.gwt.xml.client.impl; 17 18 import com.google.gwt.core.client.JavaScriptObject; 19 import com.google.gwt.xml.client.DocumentFragment; 20 21 24 class DocumentFragmentImpl extends NodeImpl implements DocumentFragment { 25 26 protected DocumentFragmentImpl(JavaScriptObject o) { 27 super(o); 28 } 29 30 37 public String toString() { 38 StringBuffer b = new StringBuffer (); 39 for (int i = 0; i < getChildNodes().getLength(); i++) { 40 b.append(getChildNodes().item(i)); 41 } 42 return b.toString(); 43 }; 44 } 45 | Popular Tags |