7374757677787980
public void writeExternal(ObjectOutput out) throws IOException { super.writeExternal(out); try { XmlSerializer.writeDOMObject(out, doc); } catch(Throwable ex) { throw new AbstractIOException(ex); } }
8384858687888990
super.readExternal(in); try { this.doc = XmlSerializer.readDOMObject(in); this.nodes = null; } catch(Throwable ex) { throw new AbstractIOException(ex); } }