All Packages Class Hierarchy This Package Previous Next Index
Class vnet.markup.MarkupFactory
java.lang.Object
|
+----vnet.markup.MarkupFactory
- public class MarkupFactory
- extends Object
A helper class containing a number of useful static methods.
Note: vnet.markup classes are not thread safe. Locking
must be performed by the application.
-
MarkupFactory()
-
-
getNewAttributeList()
- Constructs a new AttributeList object.
-
getNewCData(char[])
- Constructs a new CData implementation.
-
getNewCData(char[], int, int)
- Constructs a new CData implementation from a subarray of a character
array.
-
getNewCData(String)
- Constructs a new CData implementation.
-
getNewMarkupNodeList()
- Constructs a new MarkupNodeList object.
MarkupFactory
public MarkupFactory()
getNewAttributeList
public static AttributeList getNewAttributeList()
- Constructs a new AttributeList object.
- Returns:
- An object implementing the AttributeList interface.
getNewMarkupNodeList
public static MarkupNodeList getNewMarkupNodeList()
- Constructs a new MarkupNodeList object.
- Returns:
- An object implementing the MarkupNodeList interface.
getNewCData
public static CDataImpl getNewCData(String text)
- Constructs a new CData implementation.
- Parameters:
- text - the String to be used .
getNewCData
public static CDataImpl getNewCData(char text[])
- Constructs a new CData implementation.
- Parameters:
- text - the character array to be used.
getNewCData
public static CDataImpl getNewCData(char text[],
int offset,
int count)
- Constructs a new CData implementation from a subarray of a character
array.
- Parameters:
- text - the source character array.
- offset - the initial offset
- count - the length
All Packages Class Hierarchy This Package Previous Next Index