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
-
XSLText(XSLStylesheet)
- Creates a new XSLText element, with no data
-
XSLText(XSLStylesheet, String)
- Creates a new XSLText with the given data
-
appendData(String)
- Appends the given String to the existing data of
this XSLText
-
getData()
- Retrieves the data of this XSLText
-
setData(String)
- Sets the data of this XSLText
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
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
appendData
public void appendData(String data)
- Appends the given String to the existing data of
this XSLText
- Parameters:
- data - the String to append
getData
public String getData()
- Retrieves the data of this XSLText
- Returns:
- the data of this XSLText
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