org.apache.ws.commons.schema.utils
Class PrefixCollector

java.lang.Object
  extended by org.apache.ws.commons.schema.utils.PrefixCollector

public abstract class PrefixCollector
extends Object

Searches for namespace prefix declarations.


Constructor Summary
PrefixCollector()
           
 
Method Summary
protected abstract  void declare(String pPrefix, String pNamespaceURI)
          Records a single namespace prefix declaration.
 void searchAllPrefixDeclarations(Node pNode)
          Searches for namespace prefix declarations in the given node.
 void searchLocalPrefixDeclarations(Node pNode)
          Searches for namespace prefix declarations in the given node.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PrefixCollector

public PrefixCollector()
Method Detail

declare

protected abstract void declare(String pPrefix,
                                String pNamespaceURI)
Records a single namespace prefix declaration.


searchLocalPrefixDeclarations

public void searchLocalPrefixDeclarations(Node pNode)
Searches for namespace prefix declarations in the given node. For any prefix declaration, it invokes declare(String, String). This method doesn't work recursively: The parent nodes prefix declarations are ignored.


searchAllPrefixDeclarations

public void searchAllPrefixDeclarations(Node pNode)
Searches for namespace prefix declarations in the given node. For any prefix declaration, it invokes declare(String, String). This method works recursively: The parent nodes prefix declarations are collected before the current nodes.



Copyright © 2004-2015 The Apache Software Foundation. All Rights Reserved.