Package mf.org.apache.xerces.stax

Examples of mf.org.apache.xerces.stax.ImmutableLocation


     * Constructor.
     */
    XMLEventImpl(final int eventType, final Location location) {
        fEventType = eventType;
        if (location != null) {
            fLocation = new ImmutableLocation(location);
        }
        else {
            fLocation = EmptyLocation.getInstance();
        }
    }
View Full Code Here

TOP

Related Classes of mf.org.apache.xerces.stax.ImmutableLocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.