| java.lang.Object com.sun.xml.bind.v2.runtime.NameList
NameList | final public class NameList (Code) | | Namespace URIs and local names sorted by their indices.
Number of Names used for EIIs and AIIs
author: Kohsuke Kawaguchi |
Constructor Summary | |
public | NameList(String[] namespaceURIs, boolean[] nsUriCannotBeDefaulted, String[] localNames, int numberElementNames, int numberAttributeNames) |
localNames | final public String[] localNames(Code) | | Local names by their indices. No nulls in this array.
Read-only.
|
namespaceURIs | final public String[] namespaceURIs(Code) | | Namespace URIs by their indices. No nulls in this array.
Read-only.
|
nsUriCannotBeDefaulted | final public boolean[] nsUriCannotBeDefaulted(Code) | | For each entry in
NameList.namespaceURIs , whether the namespace URI
can be declared as the default. If namespace URI is used in attributes,
we always need a prefix, so we can't.
True if this URI has to have a prefix.
|
numberOfAttributeNames | final public int numberOfAttributeNames(Code) | | Number of Names for attributes
|
numberOfElementNames | final public int numberOfElementNames(Code) | | Number of Names for elements
|
NameList | public NameList(String[] namespaceURIs, boolean[] nsUriCannotBeDefaulted, String[] localNames, int numberElementNames, int numberAttributeNames)(Code) | | |
|
|