< prev index next >

src/java.xml/share/classes/org/xml/sax/ext/EntityResolver2.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2004, 2005, 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) 2004, 2019, 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
*** 21,35 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ - // EntityResolver2.java - Extended SAX entity resolver. - // http://www.saxproject.org - // No warranty; no copyright -- use this as you will. - // $Id: EntityResolver2.java,v 1.2 2004/11/03 22:49:08 jsuttor Exp $ - package org.xml.sax.ext; import java.io.IOException; import org.xml.sax.EntityResolver; --- 21,30 ----
*** 46,60 **** * When a parser uses the methods in this interface, the * {@link EntityResolver2#resolveEntity EntityResolver2.resolveEntity()} * method (in this interface) is used <em>instead of</em> the older (SAX 1.0) * {@link EntityResolver#resolveEntity EntityResolver.resolveEntity()} method. * - * <blockquote> - * <em>This module, both source code and documentation, is in the - * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em> - * </blockquote> - * * <p>If a SAX application requires the customized handling which this * interface defines for external entities, it must ensure that it uses * an XMLReader with the * <em>http://xml.org/sax/features/use-entity-resolver2</em> feature flag * set to <em>true</em> (which is its default value when the feature is --- 41,50 ----
< prev index next >