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.ObjectCreatesNames 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 NameListconclude()Wraps up everything and createsNameList.NamecreateAttributeName(java.lang.String nsUri, java.lang.String localName)NamecreateAttributeName(javax.xml.namespace.QName name)NamecreateElementName(java.lang.String nsUri, java.lang.String localName)NamecreateElementName(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)
-
-