All Packages Class Hierarchy This Package Previous Next Index
Class com.kvisco.xsl.XSLCData
com.kvisco.xsl.XSLObject
|
+----com.kvisco.xsl.XSLCData
- public class XSLCData
- extends XSLObject
Represents the a CDATASection in the XSLStylesheet
- Author:
- Keith Visco
-
XSLCData(XSLStylesheet)
- Creates a new XSLCData
-
XSLCData(XSLStylesheet, String)
- Creates a new XSLCData with the given data
-
appendData(String)
- Appends the given String to the existing data of
this XSLText
-
getData()
- Retrieves the data of this XSLCData
-
setData(String)
- Sets the data of this XSLCData
XSLCData
public XSLCData(XSLStylesheet parentStylesheet)
- Creates a new XSLCData
- Parameters:
- parentStylesheet - the XSL stylesheet that this CDATA
will be added to
XSLCData
public XSLCData(XSLStylesheet parentStylesheet,
String data)
- Creates a new XSLCData with the given data
- Parameters:
- parentStylesheet - the XSL stylesheet that this CDATA
will be added to
- data - the value of this CDATA section
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 XSLCData
- Returns:
- the data of this XSLCData
setData
public void setData(String data)
- Sets the data of this XSLCData
- Parameters:
- data - the String to set the data of this XSLCData
to.
All Packages Class Hierarchy This Package Previous Next Index