public NodeList makeNodeList(DTMAxisIterator iter) {
   if (_dom != null) {
     return _dom.makeNodeList(iter);
   } else {
     return super.makeNodeList(iter);
   }
 }
 public NodeList makeNodeList(int index) {
   if (_dom != null) {
     return _dom.makeNodeList(index);
   } else {
     return super.makeNodeList(index);
   }
 }