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

org.codehaus.stax2.evt.XMLEvent2 Maven / Gradle / Ivy

Go to download

Stax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.

There is a newer version: 4.2.2
Show newest version
package org.codehaus.stax2.evt;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.events.XMLEvent;

import org.codehaus.stax2.XMLStreamWriter2;

/**
 * Interface that extends basic {@link XMLEvent2} with method(s)
 * that are missing from it; specifically linkage that allows using
 * a stream/event writer for outputting.
 *

* NOTE: Unfortunately there is no way to cleanly retrofit this interface * to actual implementation classes, so some casting is necessary to * make use of new features. */ public interface XMLEvent2 extends XMLEvent { public void writeUsing(XMLStreamWriter2 w) throws XMLStreamException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy