com.ibm.xml.xapi

Class XSequenceCursorResult

  1. java.lang.Object
  2. extended bycom.ibm.xml.xapi.XSequenceCursorResult
All implemented interfaces:
javax.xml.transform.Result

  1. public class XSequenceCursorResult
  2. extends java.lang.Object
  3. implements javax.xml.transform.Result
An implementation of 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
  1. XOutputParameters
getOutputParameters()
Get the output parameters associated with this result.
  1. XSequenceCursor
getSequenceCursor()
Get the XSequenceCursor associated with this result.
  1. java.lang.String
getSystemId()
Get the system id associated with this result.
  1. void
setOutputParameters(XOutputParameters params)
Set the output parameters associated with this result.
  1. void
setSequenceCursor(XSequenceCursor sequence)
Set the XSequenceCursor.
  1. void
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

  1. public XSequenceCursorResult()
Create a new XSequenceCursorResult.

Method Detail

getSequenceCursor

  1. public XSequenceCursor getSequenceCursor( )
Get the XSequenceCursor associated with this result.
Returns:
The XSequenceCursor associated with this result.

setSequenceCursor

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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.