net.sf.saxon.om
Class NamespaceResolverAsDeclarations
java.lang.Object
net.sf.saxon.om.NamespaceResolverAsDeclarations
- NamespaceDeclarations
public class NamespaceResolverAsDeclarations
extends java.lang.Object
An implementation of NamespaceDeclarations that contains all the inscope namespaces
made available by a NamespaceResolver.
int | getNamespaceCode(int index) - Get the n'th declaration in the list in the form of a namespace code.
|
int[] | getNamespaceCodes(int[] buffer) - Get all the namespace codes, as an array.
|
int | getNumberOfNamespaces() - Get the number of declarations (and undeclarations) in this list.
|
String | getPrefix(int index) - Get the prefix of the n'th declaration (or undeclaration) in the list,
counting from zero.
|
String | getURI(int index) - Get the namespace URI of the n'th declaration (or undeclaration) in the list,
counting from zero.
|
getNamespaceCode
public int getNamespaceCode(int index)
Get the n'th declaration in the list in the form of a namespace code. Namespace
codes can be translated into a prefix and URI by means of methods in the
NamePool
- getNamespaceCode in interface NamespaceDeclarations
index
- the index identifying which declaration is required.
- the namespace code. This is an integer whose upper half indicates
the prefix (0 represents the default namespace), and whose lower half indicates
the URI (0 represents an undeclaration).
getNamespaceCodes
public int[] getNamespaceCodes(int[] buffer)
Get all the namespace codes, as an array.
- getNamespaceCodes in interface NamespaceDeclarations
buffer
- a sacrificial array that the method is free to use to contain the result.
May be null.
- an integer array containing namespace codes. The array may be filled completely
with namespace codes, or it may be incompletely filled, in which case a -1 integer acts
as a terminator.
getPrefix
public String getPrefix(int index)
Get the prefix of the n'th declaration (or undeclaration) in the list,
counting from zero.
- getPrefix in interface NamespaceDeclarations
index
- the index identifying which declaration is required.
- the namespace prefix. For a declaration or undeclaration of the
default namespace, this is the zero-length string.
getURI
public String getURI(int index)
Get the namespace URI of the n'th declaration (or undeclaration) in the list,
counting from zero.
- getURI in interface NamespaceDeclarations
index
- the index identifying which declaration is required.
- the namespace URI. For a namespace undeclaration, this is the
zero-length string.