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

com.ctc.wstx.sr.StreamReaderImpl Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package com.ctc.wstx.sr;

import javax.xml.stream.*;

import org.codehaus.stax2.XMLStreamReader2;

import com.ctc.wstx.ent.EntityDecl;

/**
 * Interface that defines "internal Woodstox API". It is used to decouple
 * parts of the Woodstox that need to know something more about woodstox
 * stream reader implementation, but not about implementation details.
 * Specifically, there are some simple dependencies from the stream
 * writer; they should only need to refer to this interface.
 */
public interface StreamReaderImpl
    extends XMLStreamReader2
{
    public EntityDecl getCurrentEntityDecl();

    public Object withStartElement(ElemCallback cb, Location loc);

    public boolean isNamespaceAware();

    public AttributeCollector getAttributeCollector();

    public InputElementStack getInputElementStack();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy