// Constructor. public NodeListEnumerator(NodeList list) { this.list = list; this.current = null; this.generation = list.generation; this.done = false; }
// Constructor. Only accessible to internal subclasses. internal XmlNode(XmlNode parent) { this.parent = parent; this.list = null; // Created on demand to save memory. }