Home | History | Annotate | Download | only in ref

Lines Matching defs:dtm

21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTM;
47 /** The DTM for this node. */
48 DTM dtm;
50 /** The DTM element handle. */
57 * Create a getAttributes NamedNodeMap for a given DTM element node
59 * @param dtm The DTM Reference, must be non-null.
60 * @param element The DTM element handle.
62 public DTMNamedNodeMap(DTM dtm, int element)
64 this.dtm = dtm;
80 for (int n = dtm.getFirstAttribute(element); n != -1;
81 n = dtm.getNextAttribute(n))
102 for (int n = dtm.getFirstAttribute(element); n != DTM.NULL;
103 n = dtm.getNextAttribute(n))
105 if (dtm.getNodeName(n).equals(name))
106 return dtm.getNode(n);
125 for (int n = dtm.getFirstAttribute(element); n != -1;
126 n = dtm.getNextAttribute(n))
129 return dtm.getNode(n);
200 for (int n = dtm.getFirstAttribute(element); n != DTM.NULL;
201 n = dtm.getNextAttribute(n))
203 if (localName.equals(dtm.getLocalName(n)))
205 String nsURI = dtm.getNamespaceURI(n);
209 retNode = dtm.getNode(n);
279 * Constructs a DOM/DTM exception.