Uses of Interface
org.codehaus.stax2.XMLStreamLocation2
Packages that use XMLStreamLocation2
Package
Description
Package that contains a skeletal reference implementation of Stax2 API,
as well as some utility/helper classes that can be useful in building
one.
-
Uses of XMLStreamLocation2 in org.codehaus.stax2
Fields in org.codehaus.stax2 declared as XMLStreamLocation2Modifier and TypeFieldDescriptionstatic final 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 XMLStreamLocation2Modifier and TypeMethodDescriptionXMLStreamLocation2.getContext()
Method that can be used to traverse nested locations, like ones created when expanding entities (especially external entities).LocationInfo.getCurrentLocation()
A method that returns the current location of the stream reader at the input source.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).XMLStreamWriter2.getLocation()
Method that should return current output location, if the writer keeps track of it; null if it does not.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 XMLStreamLocation2Modifier and TypeClassDescriptionclass
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 XMLStreamLocation2Modifier and TypeMethodDescriptionStax2LocationAdapter.getContext()
Stax2ReaderAdapter.getCurrentLocation()
abstract XMLStreamLocation2
Stax2ReaderImpl.getCurrentLocation()
final XMLStreamLocation2
Stax2ReaderAdapter.getEndLocation()
abstract XMLStreamLocation2
Stax2ReaderImpl.getEndLocation()
Stax2WriterAdapter.getLocation()
abstract XMLStreamLocation2
Stax2WriterImpl.getLocation()
Stax2ReaderAdapter.getStartLocation()
abstract XMLStreamLocation2
Stax2ReaderImpl.getStartLocation()
-
Uses of XMLStreamLocation2 in org.codehaus.stax2.ri.dom
Methods in org.codehaus.stax2.ri.dom that return XMLStreamLocation2Modifier and TypeMethodDescriptionDOMWrappingReader.getCurrentLocation()
final XMLStreamLocation2
DOMWrappingReader.getEndLocation()
DOMWrappingWriter.getLocation()
DOMWrappingReader.getStartLocation()
-
Uses of XMLStreamLocation2 in org.codehaus.stax2.util
Methods in org.codehaus.stax2.util that return XMLStreamLocation2