com.ibm.xml.xapi
Class XSequenceCursorResult
- java.lang.Object
com.ibm.xml.xapi.XSequenceCursorResult
All implemented interfaces:
javax.xml.transform.Result
- public class XSequenceCursorResult
- extends java.lang.Object
- implements javax.xml.transform.Result
Result
for XSequenceCursor
.
Can be used by implementations of XResultResolver to allow for
XSequenceCursor
results.
Field Summary
Fields inherited from interface javax.xml.transform.Result |
---|
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING |
Constructor Summary
Constructor and Description |
---|
XSequenceCursorResult()
Create a new XSequenceCursorResult.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
getOutputParameters()
Get the output parameters associated with this result.
|
|
getSequenceCursor()
Get the
XSequenceCursor associated with this result.
|
|
|
getSystemId()
Get the system id associated with this result.
|
|
setOutputParameters(XOutputParameters params)
Set the output parameters associated with this result.
|
|
setSequenceCursor(XSequenceCursor sequence)
Set the
XSequenceCursor .
|
|
setSystemId(java.lang.String systemId)
Set the system id.
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail
XSequenceCursorResult
- public XSequenceCursorResult()
Create a new XSequenceCursorResult.
Method Detail
getSequenceCursor
- public XSequenceCursor getSequenceCursor( )
Get the
XSequenceCursor
associated with this result.
Returns:
The
XSequenceCursor
associated with this result. setSequenceCursor
- public void setSequenceCursor(XSequenceCursor sequence)
Set the
XSequenceCursor
. This method
will only be called by the processor to provide
the result sequence.
Parameters:
sequence
- The XSequenceCursor
to set. getSystemId
- public java.lang.String getSystemId( )
Get the system id associated with this result.
Specified by:
getSystemId
in interface javax.xml.transform.Result
Returns:
The system id string.
setSystemId
- public void setSystemId(java.lang.String systemId)
Set the system id.
Specified by:
setSystemId
in interface javax.xml.transform.Result
Parameters:
systemId
- The system id to set. getOutputParameters
- public XOutputParameters getOutputParameters( )
Get the output parameters associated with this result.
These are the output parameters that were associated
with this result document in the stylesheet through the
attributes on the
xsl:result-document
instruction.
Returns:
The output parameters.
setOutputParameters
- public void setOutputParameters( XOutputParameters params)
Set the output parameters associated with this result.
This method will only be called by the processor
to set the output parameters to those specified in
the stylesheet through the attributes on the
xsl:result-document
instruction.
Parameters:
params
- The output parameters.