< prev index next >

src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/parser/XSOMParser.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 213,223 **** public EntityResolver getEntityResolver() { return entityResolver; } /** * Set an entity resolver that is used to resolve things ! * like &lt;xsd:import> and &lt;xsd:include>. */ public void setEntityResolver( EntityResolver resolver ) { this.entityResolver = resolver; } public ErrorHandler getErrorHandler() { --- 213,223 ---- public EntityResolver getEntityResolver() { return entityResolver; } /** * Set an entity resolver that is used to resolve things ! * like {@code <xsd:import>} and {@code <xsd:include>}. */ public void setEntityResolver( EntityResolver resolver ) { this.entityResolver = resolver; } public ErrorHandler getErrorHandler() {
*** 237,247 **** * Annotation parser can be used to parse application-specific * annotations inside a schema. * * <p> * For each annotation, new instance of this class will be ! * created and used to parse &lt;xs:annotation>. */ public void setAnnotationParser( final Class annParser ) { setAnnotationParser( new AnnotationParserFactory() { public AnnotationParser create() { try { --- 237,247 ---- * Annotation parser can be used to parse application-specific * annotations inside a schema. * * <p> * For each annotation, new instance of this class will be ! * created and used to parse {@code <xs:annotation>}. */ public void setAnnotationParser( final Class annParser ) { setAnnotationParser( new AnnotationParserFactory() { public AnnotationParser create() { try {
< prev index next >