Package org.apache.cxf.staxutils
Class AbstractDOMStreamReader<T,I>
- java.lang.Object
-
- org.apache.cxf.staxutils.AbstractDOMStreamReader<T,I>
-
- All Implemented Interfaces:
XMLStreamConstants
,XMLStreamReader
- Direct Known Subclasses:
W3CDOMStreamReader
public abstract class AbstractDOMStreamReader<T,I> extends Object implements XMLStreamReader
Abstract logic for creating XMLStreamReader from DOM documents. Its works using adapters for Element, Node and Attribute.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AbstractDOMStreamReader.ElementFrame<T,I>
-
Field Summary
Fields Modifier and Type Field Description protected int
currentEvent
-
Fields inherited from interface javax.xml.stream.XMLStreamConstants
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
-
-
Constructor Summary
Constructors Constructor Description AbstractDOMStreamReader(AbstractDOMStreamReader.ElementFrame<T,I> frame)
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.xml.stream.XMLStreamReader
getAttributeCount, getAttributeLocalName, getAttributeName, getAttributeNamespace, getAttributePrefix, getAttributeType, getAttributeValue, getAttributeValue, getEncoding, getLocalName, getName, getNamespaceContext, getNamespaceCount, getNamespacePrefix, getNamespaceURI, getNamespaceURI, getPIData, getPITarget, getPrefix, getText, getTextCharacters, getTextLength, getTextStart, isAttributeSpecified
-
-
-
-
Constructor Detail
-
AbstractDOMStreamReader
public AbstractDOMStreamReader(AbstractDOMStreamReader.ElementFrame<T,I> frame)
- Parameters:
frame
-
-
-
Method Detail
-
getCurrentFrame
protected AbstractDOMStreamReader.ElementFrame<T,I> getCurrentFrame()
-
getProperty
public Object getProperty(String name)
- Specified by:
getProperty
in interfaceXMLStreamReader
-
next
public int next() throws XMLStreamException
- Specified by:
next
in interfaceXMLStreamReader
- Throws:
XMLStreamException
-
newFrame
protected void newFrame(AbstractDOMStreamReader.ElementFrame<T,I> newFrame)
-
endElement
protected void endElement()
-
hasMoreChildren
protected abstract boolean hasMoreChildren()
-
nextChild
protected abstract int nextChild()
-
getChildFrame
protected abstract AbstractDOMStreamReader.ElementFrame<T,I> getChildFrame()
-
require
public void require(int arg0, String arg1, String arg2) throws XMLStreamException
- Specified by:
require
in interfaceXMLStreamReader
- Throws:
XMLStreamException
-
getElementText
public abstract String getElementText() throws XMLStreamException
- Specified by:
getElementText
in interfaceXMLStreamReader
- Throws:
XMLStreamException
-
consumeFrame
public void consumeFrame()
-
nextTag
public int nextTag() throws XMLStreamException
- Specified by:
nextTag
in interfaceXMLStreamReader
- Throws:
XMLStreamException
-
hasNext
public boolean hasNext() throws XMLStreamException
- Specified by:
hasNext
in interfaceXMLStreamReader
- Throws:
XMLStreamException
-
close
public void close() throws XMLStreamException
- Specified by:
close
in interfaceXMLStreamReader
- Throws:
XMLStreamException
-
getNamespaceURI
public abstract String getNamespaceURI(String prefix)
- Specified by:
getNamespaceURI
in interfaceXMLStreamReader
-
isStartElement
public boolean isStartElement()
- Specified by:
isStartElement
in interfaceXMLStreamReader
-
isEndElement
public boolean isEndElement()
- Specified by:
isEndElement
in interfaceXMLStreamReader
-
isCharacters
public boolean isCharacters()
- Specified by:
isCharacters
in interfaceXMLStreamReader
-
isWhiteSpace
public boolean isWhiteSpace()
- Specified by:
isWhiteSpace
in interfaceXMLStreamReader
-
getEventType
public int getEventType()
- Specified by:
getEventType
in interfaceXMLStreamReader
-
getTextCharacters
public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException
- Specified by:
getTextCharacters
in interfaceXMLStreamReader
- Throws:
XMLStreamException
-
hasText
public boolean hasText()
- Specified by:
hasText
in interfaceXMLStreamReader
-
getSystemId
public String getSystemId()
-
getPublicId
public String getPublicId()
-
getLocation
public Location getLocation()
- Specified by:
getLocation
in interfaceXMLStreamReader
-
hasName
public boolean hasName()
- Specified by:
hasName
in interfaceXMLStreamReader
-
getVersion
public String getVersion()
- Specified by:
getVersion
in interfaceXMLStreamReader
-
isStandalone
public boolean isStandalone()
- Specified by:
isStandalone
in interfaceXMLStreamReader
-
standaloneSet
public boolean standaloneSet()
- Specified by:
standaloneSet
in interfaceXMLStreamReader
-
getCharacterEncodingScheme
public String getCharacterEncodingScheme()
- Specified by:
getCharacterEncodingScheme
in interfaceXMLStreamReader
-
-