Package net.sf.saxon.instruct
Class InstructionDetails
- java.lang.Object
-
- net.sf.saxon.instruct.InstructionDetails
-
- All Implemented Interfaces:
java.io.Serializable,javax.xml.transform.SourceLocator,LocationProvider,SaxonLocator,InstructionInfo,InstructionInfoProvider,org.xml.sax.Locator
public final class InstructionDetails extends java.lang.Object implements InstructionInfo, InstructionInfoProvider, java.io.Serializable
Details about an instruction, used when reporting errors and when tracing- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InstructionDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetColumnNumber()Get the column number identifying the position of the instruction.intgetConstructType()Get the construct typeInstructionInfogetInstructionInfo()Get the InstructionInfo details about the construct.intgetLineNumber()Get the line number of the instruction within its moduleintgetLineNumber(int locationId)Get the line number within the document or module containing a particular locationNamespaceResolvergetNamespaceResolver()Get the namespace resolver to supply the namespace context of the instruction that is being tracedintgetObjectNameCode()Get a name identifying the object of the expression, for example a function name, template name, variable name, key name, element name, etc.java.util.IteratorgetProperties()Get an iterator over all the properties available.java.lang.ObjectgetProperty(java.lang.String name)Get a named property of the instructionjava.lang.StringgetPublicId()Get the public ID of the module containing the instruction.java.lang.StringgetSystemId()Get the URI of the module containing the instructionjava.lang.StringgetSystemId(int locationId)Get the URI of the document or module containing a particular locationvoidsetColumnNumber(int column)Set the column numbervoidsetConstructType(int type)Set the type of constructvoidsetLineNumber(int lineNumber)Set the line number of the instruction within the modulevoidsetNamespaceResolver(NamespaceResolver resolver)Set the namespace context for the instruction being traced.voidsetObjectNameCode(int nameCode)Set a name identifying the object of the expression, for example a function name, template name, variable name, key name, element name, etc.voidsetProperty(java.lang.String name, java.lang.Object value)Set a named property of the instructionvoidsetSystemId(java.lang.String systemId)Set the URI of the module containing the instruction
-
-
-
Method Detail
-
setConstructType
public void setConstructType(int type)
Set the type of construct
-
getConstructType
public int getConstructType()
Get the construct type- Specified by:
getConstructTypein interfaceInstructionInfo
-
setNamespaceResolver
public void setNamespaceResolver(NamespaceResolver resolver)
Set the namespace context for the instruction being traced. This is needed if the tracelistener wants to evaluate XPath expressions in the context of the current instruction
-
getNamespaceResolver
public NamespaceResolver getNamespaceResolver()
Get the namespace resolver to supply the namespace context of the instruction that is being traced- Specified by:
getNamespaceResolverin interfaceInstructionInfo
-
setSystemId
public void setSystemId(java.lang.String systemId)
Set the URI of the module containing the instruction- Parameters:
systemId- the module's URI
-
getSystemId
public java.lang.String getSystemId()
Get the URI of the module containing the instruction- Specified by:
getSystemIdin interfaceInstructionInfo- Specified by:
getSystemIdin interfaceorg.xml.sax.Locator- Specified by:
getSystemIdin interfacejavax.xml.transform.SourceLocator- Returns:
- the module's URI
-
setLineNumber
public void setLineNumber(int lineNumber)
Set the line number of the instruction within the module- Parameters:
lineNumber- the line number
-
getLineNumber
public int getLineNumber()
Get the line number of the instruction within its module- Specified by:
getLineNumberin interfaceInstructionInfo- Specified by:
getLineNumberin interfaceorg.xml.sax.Locator- Specified by:
getLineNumberin interfacejavax.xml.transform.SourceLocator- Returns:
- the line number
-
setObjectNameCode
public void setObjectNameCode(int nameCode)
Set a name identifying the object of the expression, for example a function name, template name, variable name, key name, element name, etc. This is used only where the name is known statically.
-
getObjectNameCode
public int getObjectNameCode()
Get a name identifying the object of the expression, for example a function name, template name, variable name, key name, element name, etc. This is used only where the name is known statically.- Specified by:
getObjectNameCodein interfaceInstructionInfo
-
setProperty
public void setProperty(java.lang.String name, java.lang.Object value)Set a named property of the instruction
-
getProperty
public java.lang.Object getProperty(java.lang.String name)
Get a named property of the instruction- Specified by:
getPropertyin interfaceInstructionInfo- Parameters:
name- The name of the required property- Returns:
- The value of the requested property, or null if the property is not available
-
getProperties
public java.util.Iterator getProperties()
Get an iterator over all the properties available. The values returned by the iterator will be of type String, and each string can be supplied as input to the getProperty() method to retrieve the value of the property.- Specified by:
getPropertiesin interfaceInstructionInfo
-
getPublicId
public java.lang.String getPublicId()
Get the public ID of the module containing the instruction. This method is provided to satisfy the SourceLocator interface. However, the public ID is not maintained by Saxon, and the method always returns null- Specified by:
getPublicIdin interfaceorg.xml.sax.Locator- Specified by:
getPublicIdin interfacejavax.xml.transform.SourceLocator- Returns:
- null
-
setColumnNumber
public void setColumnNumber(int column)
Set the column number
-
getColumnNumber
public int getColumnNumber()
Get the column number identifying the position of the instruction.- Specified by:
getColumnNumberin interfaceorg.xml.sax.Locator- Specified by:
getColumnNumberin interfacejavax.xml.transform.SourceLocator- Returns:
- -1 if column number is not known
-
getInstructionInfo
public InstructionInfo getInstructionInfo()
Get the InstructionInfo details about the construct. This is to satisfy the InstructionInfoProvider interface.- Specified by:
getInstructionInfoin interfaceInstructionInfoProvider
-
getSystemId
public java.lang.String getSystemId(int locationId)
Description copied from interface:LocationProviderGet the URI of the document or module containing a particular location- Specified by:
getSystemIdin interfaceLocationProvider- Parameters:
locationId- identifier of the location in question (as passed down the Receiver pipeline)- Returns:
- the URI of the document or module.
-
getLineNumber
public int getLineNumber(int locationId)
Description copied from interface:LocationProviderGet the line number within the document or module containing a particular location- Specified by:
getLineNumberin interfaceLocationProvider- Parameters:
locationId- identifier of the location in question (as passed down the Receiver pipeline)- Returns:
- the line number within the document or module.
-
-