Lines Matching refs:node

270   private final void dispatachChars(Node node)
275 ((com.sun.org.apache.xml.internal.dtm.ref.dom2dtm.DOM2DTM.CharacterNodeHandler)m_contentHandler).characters(node);
279 String data = ((Text) node).getData();
285 * Start processing given node
288 * @param node Node to process
292 protected void startNode(Node node) throws org.xml.sax.SAXException
297 ((NodeConsumer) m_contentHandler).setOriginatingNode(node);
300 if (node instanceof Locator)
302 Locator loc = (Locator)node;
314 switch (node.getNodeType())
318 String data = ((Comment) node).getData();
336 NamedNodeMap atts = ((Element) node).getAttributes();
338 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
362 // System.out.println("m_dh.getNamespaceOfNode(node): "+m_dh.getNamespaceOfNode(node));
363 // System.out.println("m_dh.getLocalNameOfNode(node): "+m_dh.getLocalNameOfNode(node));
364 String ns = m_dh.getNamespaceOfNode(node);
368 m_dh.getLocalNameOfNode(node),
369 node.getNodeName(),
374 ProcessingInstruction pi = (ProcessingInstruction) node;
400 dispatachChars(node);
412 //String data = ((Text) node).getData();
419 dispatachChars(node);
424 dispatachChars(node);
430 EntityReference eref = (EntityReference) node;
449 * End processing of given node
452 * @param node Node we just finished processing
456 protected void endNode(Node node) throws org.xml.sax.SAXException
459 switch (node.getNodeType())
465 String ns = m_dh.getNamespaceOfNode(node);
469 m_dh.getLocalNameOfNode(node),
470 node.getNodeName());
472 NamedNodeMap atts = ((Element) node).getAttributes();
497 EntityReference eref = (EntityReference) node;