Class SimpleNamespaceResolver.NamespaceAttributeNodeProcessor

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(org.w3c.dom.Node aNode)
      Defines if this visitor should process the provided node.
      void process​(org.w3c.dom.Node aNode)
      Processes the provided DOM Node.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NamespaceAttributeNodeProcessor

        private NamespaceAttributeNodeProcessor()
    • Method Detail

      • accept

        public boolean accept​(org.w3c.dom.Node aNode)
        Defines if this visitor should process the provided node.
        Specified by:
        accept in interface NodeProcessor
        Parameters:
        aNode - The DOM node to process.
        Returns:
        true if the provided Node should be processed by this NodeProcessor.
      • process

        public void process​(org.w3c.dom.Node aNode)
        Processes the provided DOM Node.
        Specified by:
        process in interface NodeProcessor
        Parameters:
        aNode - The DOM Node to process.