Package com.sun.xml.bind.v2.runtime
Class NameBuilder
- java.lang.Object
-
- com.sun.xml.bind.v2.runtime.NameBuilder
-
public final class NameBuilder extends java.lang.Object
CreatesName
s and assign index numbers to them.During this process, this class also finds out which namespace URIs are statically known to be un-bindable as the default namespace. Those are the namespace URIs that are used by attribute names.
- Author:
- Kohsuke Kawaguchi
-
-
Constructor Summary
Constructors Constructor Description NameBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NameList
conclude()
Wraps up everything and createsNameList
.Name
createAttributeName(java.lang.String nsUri, java.lang.String localName)
Name
createAttributeName(javax.xml.namespace.QName name)
Name
createElementName(java.lang.String nsUri, java.lang.String localName)
Name
createElementName(javax.xml.namespace.QName name)
-
-
-
Method Detail
-
createElementName
public Name createElementName(javax.xml.namespace.QName name)
-
createElementName
public Name createElementName(java.lang.String nsUri, java.lang.String localName)
-
createAttributeName
public Name createAttributeName(javax.xml.namespace.QName name)
-
createAttributeName
public Name createAttributeName(java.lang.String nsUri, java.lang.String localName)
-
-