Uses of Class
com.sun.tools.xjc.ErrorReceiver

Packages that use ErrorReceiver
com.sun.tools.xjc Schema to Java compiler 
com.sun.tools.xjc.api.impl.s2j implementation of the XJC API for schema to java. 
com.sun.tools.xjc.generator.bean   
com.sun.tools.xjc.model Implementation of the com.sun.xml.bind.v2.model.core package for XJC. 
com.sun.tools.xjc.outline Provides the outline of the generated Java source code so that additional processings (such as adding more annotations) can be done on the generated code. 
com.sun.tools.xjc.reader Front-end that reads schema(s) and produce BGM. 
com.sun.tools.xjc.reader.dtd   
com.sun.tools.xjc.reader.dtd.bindinfo Object Model that represents DTD binding information. 
com.sun.tools.xjc.reader.internalizer internalization of external binding files and <jaxb:bindings> customizations. 
com.sun.tools.xjc.reader.xmlschema   
com.sun.tools.xjc.reader.xmlschema.parser   
com.sun.tools.xjc.util   
 

Uses of ErrorReceiver in com.sun.tools.xjc
 

Subclasses of ErrorReceiver in com.sun.tools.xjc
 class ConsoleErrorReporter
          ErrorReceiver that prints to a PrintStream.
 

Methods in com.sun.tools.xjc with parameters of type ErrorReceiver
static Model ModelLoader.load(Options opt, com.sun.codemodel.JCodeModel codeModel, ErrorReceiver er)
          A convenience method to load schemas into a Model.
 

Constructors in com.sun.tools.xjc with parameters of type ErrorReceiver
ModelLoader(Options _opt, com.sun.codemodel.JCodeModel _codeModel, ErrorReceiver er)
           
 

Uses of ErrorReceiver in com.sun.tools.xjc.api.impl.s2j
 

Subclasses of ErrorReceiver in com.sun.tools.xjc.api.impl.s2j
 class SchemaCompilerImpl
          SchemaCompiler implementation.
 

Uses of ErrorReceiver in com.sun.tools.xjc.generator.bean
 

Methods in com.sun.tools.xjc.generator.bean that return ErrorReceiver
 ErrorReceiver BeanGenerator.getErrorReceiver()
           
 

Methods in com.sun.tools.xjc.generator.bean with parameters of type ErrorReceiver
static Outline BeanGenerator.generate(Model model, ErrorReceiver _errorReceiver)
          Generates beans into code model according to the BGM, and produces the reflection model.
 

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

Methods in com.sun.tools.xjc.model with parameters of type ErrorReceiver
 Outline Model.generateCode(Options opt, ErrorReceiver receiver)
          Fully-generate the source code into the given model.
 

Uses of ErrorReceiver in com.sun.tools.xjc.outline
 

Methods in com.sun.tools.xjc.outline that return ErrorReceiver
 ErrorReceiver Outline.getErrorReceiver()
          Any error during the back-end proccessing should be sent to this object.
 

Uses of ErrorReceiver in com.sun.tools.xjc.reader
 

Methods in com.sun.tools.xjc.reader with parameters of type ErrorReceiver
static com.sun.codemodel.JType TypeUtil.getType(com.sun.codemodel.JCodeModel codeModel, java.lang.String typeName, ErrorReceiver errorHandler, org.xml.sax.Locator errorSource)
          Obtains a JType object for the string representation of a type.
 

Uses of ErrorReceiver in com.sun.tools.xjc.reader.dtd
 

Methods in com.sun.tools.xjc.reader.dtd with parameters of type ErrorReceiver
static Model TDTDReader.parse(org.xml.sax.InputSource dtd, org.xml.sax.InputSource bindingInfo, ErrorReceiver errorReceiver, Options opts)
          Parses DTD grammar and a binding information into BGM.
 

Constructors in com.sun.tools.xjc.reader.dtd with parameters of type ErrorReceiver
TDTDReader(ErrorReceiver errorReceiver, Options opts, org.xml.sax.InputSource _bindInfo)
           
 

Uses of ErrorReceiver in com.sun.tools.xjc.reader.dtd.bindinfo
 

Fields in com.sun.tools.xjc.reader.dtd.bindinfo declared as ErrorReceiver
protected  ErrorReceiver BindInfo.errorReceiver
          Controller object that can be used to report errors.
 

Constructors in com.sun.tools.xjc.reader.dtd.bindinfo with parameters of type ErrorReceiver
BindInfo(Model model, org.w3c.dom.Document _dom, ErrorReceiver _errorReceiver)
           
BindInfo(Model model, org.xml.sax.InputSource source, ErrorReceiver _errorReceiver)
           
 

Uses of ErrorReceiver in com.sun.tools.xjc.reader.internalizer
 

Methods in com.sun.tools.xjc.reader.internalizer that return ErrorReceiver
 ErrorReceiver DOMForest.getErrorHandler()
           
 

Methods in com.sun.tools.xjc.reader.internalizer with parameters of type ErrorReceiver
 void SCDBasedBindingSet.apply(com.sun.xml.xsom.XSSchemaSet schema, ErrorReceiver errorReceiver)
          Applies the additional binding customizations.
 boolean DOMForest.checkSchemaCorrectness(ErrorReceiver errorHandler)
          Checks the correctness of the XML Schema documents and return true if it's OK.
 void DOMForest.setErrorHandler(ErrorReceiver errorHandler)
           
 

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

Methods in com.sun.tools.xjc.reader.xmlschema with parameters of type ErrorReceiver
static Model BGMBuilder.build(com.sun.xml.xsom.XSSchemaSet _schemas, com.sun.codemodel.JCodeModel codeModel, ErrorReceiver _errorReceiver, Options opts)
          Entry point.
 

Uses of ErrorReceiver in com.sun.tools.xjc.reader.xmlschema.parser
 

Methods in com.sun.tools.xjc.reader.xmlschema.parser with parameters of type ErrorReceiver
static boolean SchemaConstraintChecker.check(org.xml.sax.InputSource[] schemas, ErrorReceiver errorHandler, org.xml.sax.EntityResolver entityResolver)
           
 

Uses of ErrorReceiver in com.sun.tools.xjc.util
 

Subclasses of ErrorReceiver in com.sun.tools.xjc.util
 class ErrorReceiverFilter
          Filter implementation of the ErrorReceiver.
 

Constructors in com.sun.tools.xjc.util with parameters of type ErrorReceiver
CodeModelClassFactory(ErrorReceiver _errorReceiver)