Java Code Examples for com.sun.xml.internal.bind.unmarshaller.DOMScanner#setLocator()
The following examples show how to use
com.sun.xml.internal.bind.unmarshaller.DOMScanner#setLocator() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SchemaCompilerImpl.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }
Example 2
Source File: SchemaCompilerImpl.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }
Example 3
Source File: SchemaCompilerImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }
Example 4
Source File: SchemaCompilerImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }
Example 5
Source File: SchemaCompilerImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }
Example 6
Source File: SchemaCompilerImpl.java From hottub with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }
Example 7
Source File: SchemaCompilerImpl.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }
Example 8
Source File: SchemaCompilerImpl.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public void parseSchema( String systemId, Element element ) { checkAbsoluteness(systemId); try { DOMScanner scanner = new DOMScanner(); // use a locator that sets the system ID correctly // so that we can resolve relative URLs in most of the case. // it still doesn't handle xml:base and XInclude and all those things // correctly. There's just no way to make all those things work with DOM! LocatorImpl loc = new LocatorImpl(); loc.setSystemId(systemId); scanner.setLocator(loc); scanner.setContentHandler(getParserHandler(systemId)); scanner.scan(element); } catch (SAXException e) { // since parsing DOM shouldn't cause a SAX exception // and our handler will never throw it, it's not clear // if this will ever happen. fatalError(new SAXParseException2( e.getMessage(), null, systemId,-1,-1, e)); } }