Uses of Interface
org.codehaus.stax2.XMLStreamLocation2
-
Packages that use XMLStreamLocation2 Package Description org.codehaus.stax2 org.codehaus.stax2.ri Package that contains a skeletal reference implementation of Stax2 API, as well as some utility/helper classes that can be useful in building one.org.codehaus.stax2.ri.dom org.codehaus.stax2.util -
-
Uses of XMLStreamLocation2 in org.codehaus.stax2
Fields in org.codehaus.stax2 declared as XMLStreamLocation2 Modifier and Type Field Description static XMLStreamLocation2
XMLStreamLocation2. NOT_AVAILABLE
"Dummy" Location implementation and instance that can be return instead of null, when no location information is available.Methods in org.codehaus.stax2 that return XMLStreamLocation2 Modifier and Type Method Description XMLStreamLocation2
XMLStreamLocation2. getContext()
Method that can be used to traverse nested locations, like ones created when expanding entities (especially external entities).XMLStreamLocation2
LocationInfo. getCurrentLocation()
A method that returns the current location of the stream reader at the input source.XMLStreamLocation2
LocationInfo. getEndLocation()
An optional method that either returns the location object that points the ending position of the current event, or null if implementation does not keep track of it (some may return only start location; and some no location at all).XMLStreamLocation2
XMLStreamWriter2. getLocation()
Method that should return current output location, if the writer keeps track of it; null if it does not.XMLStreamLocation2
LocationInfo. getStartLocation()
An optional method that either returns the location object that points the starting position of the current event, or null if implementation does not keep track of it (some may return only end location; and some no location at all). -
Uses of XMLStreamLocation2 in org.codehaus.stax2.ri
Classes in org.codehaus.stax2.ri that implement XMLStreamLocation2 Modifier and Type Class Description class
Stax2LocationAdapter
Simple implementation ofXMLStreamLocation2
, which just wraps Stax 1.0Location
and adds no-operation implementation of the additions.Methods in org.codehaus.stax2.ri that return XMLStreamLocation2 Modifier and Type Method Description XMLStreamLocation2
Stax2LocationAdapter. getContext()
XMLStreamLocation2
Stax2ReaderAdapter. getCurrentLocation()
abstract XMLStreamLocation2
Stax2ReaderImpl. getCurrentLocation()
XMLStreamLocation2
Stax2ReaderAdapter. getEndLocation()
abstract XMLStreamLocation2
Stax2ReaderImpl. getEndLocation()
XMLStreamLocation2
Stax2WriterAdapter. getLocation()
abstract XMLStreamLocation2
Stax2WriterImpl. getLocation()
XMLStreamLocation2
Stax2ReaderAdapter. getStartLocation()
abstract XMLStreamLocation2
Stax2ReaderImpl. getStartLocation()
-
Uses of XMLStreamLocation2 in org.codehaus.stax2.ri.dom
Methods in org.codehaus.stax2.ri.dom that return XMLStreamLocation2 Modifier and Type Method Description XMLStreamLocation2
DOMWrappingReader. getCurrentLocation()
XMLStreamLocation2
DOMWrappingReader. getEndLocation()
XMLStreamLocation2
DOMWrappingWriter. getLocation()
XMLStreamLocation2
DOMWrappingReader. getStartLocation()
-
Uses of XMLStreamLocation2 in org.codehaus.stax2.util
Methods in org.codehaus.stax2.util that return XMLStreamLocation2 Modifier and Type Method Description XMLStreamLocation2
StreamWriter2Delegate. getLocation()
-