src/java.xml/share/classes/org/xml/sax/ext/Locator2Impl.java
changeset 58247 3aef3bccfae3
parent 47216 71c04702a3d5
equal deleted inserted replaced
58246:3c8f89e2ec03 58247:3aef3bccfae3
     1 /*
     1 /*
     2  * Copyright (c) 2004, 2005, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2004, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 // Locator2Impl.java - extended LocatorImpl
       
    27 // http://www.saxproject.org
       
    28 // Public Domain: no warranty.
       
    29 // $Id: Locator2Impl.java,v 1.2 2004/11/03 22:49:08 jsuttor Exp $
       
    30 
       
    31 package org.xml.sax.ext;
    26 package org.xml.sax.ext;
    32 
    27 
    33 import org.xml.sax.Locator;
    28 import org.xml.sax.Locator;
    34 import org.xml.sax.helpers.LocatorImpl;
    29 import org.xml.sax.helpers.LocatorImpl;
    35 
    30 
    36 
    31 
    37 /**
    32 /**
    38  * SAX2 extension helper for holding additional Entity information,
    33  * SAX2 extension helper for holding additional Entity information,
    39  * implementing the {@link Locator2} interface.
    34  * implementing the {@link Locator2} interface.
    40  *
       
    41  * <blockquote>
       
    42  * <em>This module, both source code and documentation, is in the
       
    43  * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
       
    44  * </blockquote>
       
    45  *
    35  *
    46  * <p> This is not part of core-only SAX2 distributions.</p>
    36  * <p> This is not part of core-only SAX2 distributions.</p>
    47  *
    37  *
    48  * @since 1.5, SAX 2.0.2
    38  * @since 1.5, SAX 2.0.2
    49  * @author David Brownell
    39  * @author David Brownell