BEA Systems, Inc.

BEA WebLogic Server 9.0 API Reference


weblogic.apache.xerces.xni
Interface NamespaceContext

All Known Implementing Classes:
NamespaceSupport

Deprecated. please use JDK supplied XML parsers and transformers

public interface NamespaceContext

Represents an interface to query namespace information.


Field Summary
static String XML_URI
          Deprecated. The XML Namespace ("http://www.w3.org/XML/1998/namespace").
static String XMLNS_URI
          Deprecated. XML Information Set REC all namespace attributes (including those named xmlns, whose [prefix] property has no value) have a namespace URI of http://www.w3.org/2000/xmlns/
 
Method Summary
 String getDeclaredPrefixAt(int index)
          Deprecated. Returns the prefix at the specified index in the current context.
 int getDeclaredPrefixCount()
          Deprecated. Return a count of all prefixes currently declared, including the default prefix if bound.
 NamespaceContext getParentContext()
          Deprecated. Returns the parent namespace context or null if there is no parent context.
 String getURI(String prefix)
          Deprecated. Look up a prefix and get the currently-mapped Namespace URI.
 

Field Detail

XML_URI

public static final String XML_URI
Deprecated. 
The XML Namespace ("http://www.w3.org/XML/1998/namespace"). This is the Namespace URI that is automatically mapped to the "xml" prefix.


XMLNS_URI

public static final String XMLNS_URI
Deprecated. 
XML Information Set REC all namespace attributes (including those named xmlns, whose [prefix] property has no value) have a namespace URI of http://www.w3.org/2000/xmlns/

Method Detail

getDeclaredPrefixAt

public String getDeclaredPrefixAt(int index)
Deprecated. 
Returns the prefix at the specified index in the current context.


getDeclaredPrefixCount

public int getDeclaredPrefixCount()
Deprecated. 
Return a count of all prefixes currently declared, including the default prefix if bound.


getParentContext

public NamespaceContext getParentContext()
Deprecated. 
Returns the parent namespace context or null if there is no parent context. The total depth of the namespace contexts matches the element depth in the document.

Note: This method may return the same NamespaceContext object reference. The caller is responsible for saving the declared prefix mappings before calling this method.


getURI

public String getURI(String prefix)
Deprecated. 
Look up a prefix and get the currently-mapped Namespace URI.

This method looks up the prefix in the current context. Use the empty string ("") for the default Namespace.

Parameters:
prefix - The prefix to look up.
Returns:
The associated Namespace URI, or null if the prefix is undeclared in this context.

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs90
Copyright 2005 BEA Systems Inc.