All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.kvisco.xsl.XSLText

com.kvisco.xsl.XSLObject
   |
   +----com.kvisco.xsl.XSLText

public class XSLText
extends XSLObject
Represents the xsl:text element

Author:
Keith Visco

Constructor Index

 o XSLText(XSLStylesheet)
Creates a new XSLText element, with no data
 o XSLText(XSLStylesheet, String)
Creates a new XSLText with the given data

Method Index

 o appendData(String)
Appends the given String to the existing data of this XSLText
 o getData()
Retrieves the data of this XSLText
 o setData(String)
Sets the data of this XSLText

Constructors

 o XSLText
 public XSLText(XSLStylesheet parentStylesheet)
Creates a new XSLText element, with no data

Parameters:
parentStylesheet - the XSL Stylesheet in which this XSLText is to be added
 o XSLText
 public XSLText(XSLStylesheet parentStylesheet,
                String data)
Creates a new XSLText with the given data

Parameters:
parentStylesheet - the XSL Stylesheet in which this XSLText is to be added
data - the value of this XSLText object

Methods

 o appendData
 public void appendData(String data)
Appends the given String to the existing data of this XSLText

Parameters:
data - the String to append
 o getData
 public String getData()
Retrieves the data of this XSLText

Returns:
the data of this XSLText
 o setData
 public void setData(String data)
Sets the data of this XSLText

Parameters:
data - the String to set the data of this XSLText to.

All Packages  Class Hierarchy  This Package  Previous  Next  Index