com.sun.tools.xjc.reader.xmlschema.parser
Class IncorrectNamespaceURIChecker
java.lang.Object
org.xml.sax.helpers.XMLFilterImpl
com.sun.tools.xjc.reader.xmlschema.parser.IncorrectNamespaceURIChecker
- All Implemented Interfaces:
- ContentHandler, DTDHandler, EntityResolver, ErrorHandler, XMLFilter, XMLReader
public class IncorrectNamespaceURIChecker
- extends XMLFilterImpl
This filter detects the use of incorrect JAXB namespace URI.
When the binding compiler looks at a schema file, it always look
for the namespace URI of the elements (which is correct, BTW.)
However, one unfortunate downside of this philosophically correct
behavior is that there is no provision or safety check when an user
misspelled JAXB binding customization namespace.
This checker inspects the input document and look for the use of the
prefix "jaxb". If the document doesn't associate any prefix to the
JAXB customization URI and if it does associate the jaxb prefix,
this checker will issue a warning.
This warning can happen to completely correct schema (because
nothing prevents you from using the prefix "jaxb" for other purpose
while using a JAXB compiler on the same schema) but in practice
this would be quite unlikely.
This justifies the use of this filter.
Methods inherited from class org.xml.sax.helpers.XMLFilterImpl |
characters, endElement, endPrefixMapping, error, fatalError, getContentHandler, getDTDHandler, getEntityResolver, getErrorHandler, getFeature, getParent, getProperty, ignorableWhitespace, notationDecl, parse, parse, processingInstruction, resolveEntity, setContentHandler, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setParent, setProperty, skippedEntity, startDocument, unparsedEntityDecl, warning |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
IncorrectNamespaceURIChecker
public IncorrectNamespaceURIChecker(ErrorHandler handler)
endDocument
public void endDocument()
throws SAXException
- Specified by:
endDocument
in interface ContentHandler
- Overrides:
endDocument
in class XMLFilterImpl
- Throws:
SAXException
startPrefixMapping
public void startPrefixMapping(String prefix,
String uri)
throws SAXException
- Specified by:
startPrefixMapping
in interface ContentHandler
- Overrides:
startPrefixMapping
in class XMLFilterImpl
- Throws:
SAXException
startElement
public void startElement(String namespaceURI,
String localName,
String qName,
Attributes atts)
throws SAXException
- Specified by:
startElement
in interface ContentHandler
- Overrides:
startElement
in class XMLFilterImpl
- Throws:
SAXException
setDocumentLocator
public void setDocumentLocator(Locator locator)
- Specified by:
setDocumentLocator
in interface ContentHandler
- Overrides:
setDocumentLocator
in class XMLFilterImpl