All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ctc.wstx.evt.WNotationDeclaration Maven / Gradle / Ivy

Go to download

Woodstox is a high-performance XML processor that implements Stax (JSR-173), SAX2 and Stax2 APIs

There is a newer version: 6.6.2
Show newest version
package com.ctc.wstx.evt;

import java.net.URL;

import javax.xml.stream.Location;

import org.codehaus.stax2.ri.evt.NotationDeclarationEventImpl;

/**
 * Woodstox implementation of {@link org.codehaus.stax2.evt.NotationDeclaration2}.
 * The only required addition is that of passing in the Base URI.
 *
 * @author Tatu Saloranta
 * 
 * @since 4.0.0
 */
public class WNotationDeclaration
    extends NotationDeclarationEventImpl
{
    /**
     * Base URL that can be used to resolve the notation reference if
     * necessary.
     */
    final URL _baseURL;

    public WNotationDeclaration(Location loc,
                                String name, String pubId, String sysId,
                                URL baseURL)
    {
        super(loc, name, pubId, sysId);
        _baseURL = baseURL;
    }

    @Override
    public String getBaseURI()
    {
        if (_baseURL == null) {
            return super.getBaseURI();
        }
        return _baseURL.toExternalForm();
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy