|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.event.ContentHandlerProxyLocator
public class ContentHandlerProxyLocator
Implementation of Locator, used to supply location information to the ContentHandler.
When the ContentHandler is used to receive the results of a query or stylesheet,
the information supplied by the standard methods such as getSystemId()
and
getLineNumber()
relates to the position of the expression/instruction in the stylesheet
or query that caused the relevant nodes to be output.
If the ContentHandler is used in other contexts, for example as the destination of an IdentityTransformer, the information reflects the position in the source document.
If the output property saxon:supply-source-locator
was set to the
value "yes" (which in turn requires that tracing was enabled at compile time), the Locator will
also contain information about the current location in the source document (specifically, the position
of the context node). This will not always be 100% accurate, since there is some buffering of events
in the output pipeline: it reflects the context node at the time the event reaches the ContentHandler,
which may not be the same as the context node at the time the relevant instruction was executed;
however, it still provides some information that may be useful for diagnostics.
Constructor Summary | |
---|---|
ContentHandlerProxyLocator(ContentHandlerProxy parent)
Create the Locator for a ContentHandlerProxy |
Method Summary | |
---|---|
int |
getColumnNumber()
Get the column number |
Stack |
getContextItemStack()
Get the current item stack. |
int |
getLineNumber()
Get the line number |
String |
getPublicId()
Get the Public ID |
String |
getSystemId()
Get the System ID |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ContentHandlerProxyLocator(ContentHandlerProxy parent)
parent
- the ContentHandlerProxyMethod Detail |
---|
public String getPublicId()
getPublicId
in interface Locator
public String getSystemId()
getSystemId
in interface Locator
public int getLineNumber()
getLineNumber
in interface Locator
public int getColumnNumber()
getColumnNumber
in interface Locator
public Stack getContextItemStack()
Item
. The top item in the stack is the context node or atomic value; items
further down the stack represent previous context node or atomic value
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |