Lines Matching refs:node

99    * (postorder) are invoked for each node as we traverse over them,
100 * with the result that the node is written out to m_contentHandler.
149 * (postorder) are invoked for each node as we traverse over them,
150 * with the result that the node is written out to m_contentHandler.
201 private final void dispatachChars(int node)
204 m_dtm.dispatchCharactersEvents(node, m_contentHandler, false);
208 * Start processing given node
211 * @param node Node to process
215 protected void startNode(int node) throws org.xml.sax.SAXException
221 // ((NodeConsumer) m_contentHandler).setOriginatingNode(node);
224 switch (m_dtm.getNodeType(node))
228 XMLString data = m_dtm.getStringValue(node);
247 for (int nsn = dtm.getFirstNamespaceNode(node, true); DTM.NULL != nsn;
248 nsn = dtm.getNextNamespaceNode(node, nsn, true))
257 // System.out.println("m_dh.getNamespaceOfNode(node): "+m_dh.getNamespaceOfNode(node));
258 // System.out.println("m_dh.getLocalNameOfNode(node): "+m_dh.getLocalNameOfNode(node));
259 String ns = dtm.getNamespaceURI(node);
267 for (int i = dtm.getFirstAttribute(node);
280 m_dtm.getLocalName(node),
281 m_dtm.getNodeName(node),
286 String name = m_dtm.getNodeName(node);
296 m_dtm.getNodeValue(node));
311 dispatachChars(node);
328 dispatachChars(node);
333 dispatachChars(node);
342 m_dtm.getNodeName(node));
356 * End processing of given node
359 * @param node Node we just finished processing
363 protected void endNode(int node) throws org.xml.sax.SAXException
366 switch (m_dtm.getNodeType(node))
372 String ns = m_dtm.getNamespaceURI(node);
376 m_dtm.getLocalName(node),
377 m_dtm.getNodeName(node));
379 for (int nsn = m_dtm.getFirstNamespaceNode(node, true); DTM.NULL != nsn;
380 nsn = m_dtm.getNextNamespaceNode(node, nsn, true))
396 lh.endEntity(m_dtm.getNodeName(node));