Package net.sf.saxon.instruct
Class InstructionDetails
java.lang.Object
net.sf.saxon.instruct.InstructionDetails
- All Implemented Interfaces:
Serializable,SourceLocator,LocationProvider,SaxonLocator,InstructionInfo,Locator
Details about an instruction, used when reporting errors and when tracing
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintGet the column number identifying the position of the instruction.intgetColumnNumber(long locationId) Get the column number within the document or module containing a particular locationintGet the construct typeGet the InstructionInfo details about the construct.intGet the line number of the instruction within its moduleintgetLineNumber(long locationId) Get the line number within the document or module containing a particular locationGet a name identifying the object of the expression, for example a function name, template name, variable name, key name, element name, etc.Get an iterator over all the properties available.getProperty(String name) Get a named property of the instructionGet the public ID of the module containing the instruction.Get the URI of the module containing the instructiongetSystemId(long 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 modulevoidsetObjectName(StructuredQName qName) Set a name identifying the object of the expression, for example a function name, template name, variable name, key name, element name, etc.voidsetProperty(String name, Object value) Set a named property of the instructionvoidsetSystemId(String systemId) Set the URI of the module containing the instruction
-
Constructor Details
-
InstructionDetails
public InstructionDetails()
-
-
Method Details
-
setConstructType
public void setConstructType(int type) Set the type of construct -
getConstructType
public int getConstructType()Get the construct type- Specified by:
getConstructTypein interfaceInstructionInfo- Returns:
- an integer identifying the kind of construct
-
setSystemId
Set the URI of the module containing the instruction- Parameters:
systemId- the module's URI
-
getSystemId
Get the URI of the module containing the instruction- Specified by:
getSystemIdin interfaceInstructionInfo- Specified by:
getSystemIdin interfaceLocator- Specified by:
getSystemIdin interfaceSourceLocator- 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 interfaceLocator- Specified by:
getLineNumberin interfaceSourceLocator- Returns:
- the line number
-
setObjectName
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. -
getObjectName
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:
getObjectNamein interfaceInstructionInfo- Returns:
- the QName of the object declared or manipulated by this instruction or expression
-
setProperty
Set a named property of the instruction -
getProperty
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
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- Returns:
- an iterator over the properties.
-
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 interfaceLocator- Specified by:
getPublicIdin interfaceSourceLocator- 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 interfaceLocator- Specified by:
getColumnNumberin interfaceSourceLocator- Returns:
- -1 if column number is not known
-
getInstructionInfo
Get the InstructionInfo details about the construct. This is to satisfy the InstructionInfoProvider interface. -
getSystemId
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(long 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.
-
getColumnNumber
public int getColumnNumber(long locationId) Description copied from interface:LocationProviderGet the column number within the document or module containing a particular location- Specified by:
getColumnNumberin interfaceLocationProvider- Parameters:
locationId- identifier of the location in question (as passed down the Receiver pipeline)- Returns:
- the column number within the document or module, or -1 if this is not available
-