Uses of Interface
com.sun.xml.bind.api.impl.NameConverter

Packages that use NameConverter
com.sun.tools.xjc Schema to Java compiler 
com.sun.tools.xjc.model Implementation of the com.sun.xml.bind.v2.model.core package for XJC. 
com.sun.tools.xjc.reader.xmlschema   
com.sun.tools.xjc.reader.xmlschema.bindinfo Object Model that represents customization declarations. 
com.sun.xml.bind.api.impl   
 

Uses of NameConverter in com.sun.tools.xjc
 

Methods in com.sun.tools.xjc that return NameConverter
 NameConverter Options.getNameConverter()
          Gets the active NameConverter that shall be used to build Model.
 

Methods in com.sun.tools.xjc with parameters of type NameConverter
 void Options.setNameConverter(NameConverter nc, Plugin owner)
          Sets the NameConverter.
 

Uses of NameConverter in com.sun.tools.xjc.model
 

Methods in com.sun.tools.xjc.model that return NameConverter
 NameConverter Model.getNameConverter()
          Gets the name converter that shall be used to parse XML names into Java names.
 

Methods in com.sun.tools.xjc.model with parameters of type NameConverter
 void Model.setNameConverter(NameConverter nameConverter)
           
 

Constructors in com.sun.tools.xjc.model with parameters of type NameConverter
Model(Options opts, com.sun.codemodel.JCodeModel cm, NameConverter nc, ClassNameAllocator allocator, com.sun.xml.xsom.XSSchemaSet schemaComponent)
           
 

Uses of NameConverter in com.sun.tools.xjc.reader.xmlschema
 

Methods in com.sun.tools.xjc.reader.xmlschema that return NameConverter
 NameConverter BGMBuilder.getNameConverter()
          Name converter that implements "XML->Java name conversion" as specified in the spec.
 

Uses of NameConverter in com.sun.tools.xjc.reader.xmlschema.bindinfo
 

Fields in com.sun.tools.xjc.reader.xmlschema.bindinfo declared as NameConverter
 NameConverter BIGlobalBinding.nameConverter
          Gets the name converter that will govern the XML->Java name conversion process for this compilation.
 

Uses of NameConverter in com.sun.xml.bind.api.impl
 

Classes in com.sun.xml.bind.api.impl that implement NameConverter
static class NameConverter.Standard
           
 

Fields in com.sun.xml.bind.api.impl declared as NameConverter
static NameConverter NameConverter.jaxrpcCompatible
          JAX-PRC compatible name converter implementation.
static NameConverter NameConverter.smart
          Smarter converter used for RELAX NG support.
static NameConverter NameConverter.standard
          The name converter implemented by Code Model.