| |
|
| java.util.LinkedList org.objectweb.jonas_lib.deployment.xml.JLinkedList
JLinkedList | public class JLinkedList extends LinkedList (Code) | | This class defines a linked list with the ability to display its content in XML.
author: Florent Benoit |
Method Summary | |
public String | toString() Return the representation of this element. | public String | toXML() Represents this element by it's XML description. | public String | toXML(int indent) Represents this element by it's XML description.
Parameters: indent - use this indent for prexifing XML representation. |
JLinkedList | public JLinkedList(String tag)(Code) | | Constructor with a specified tag
Parameters: tag - of the root element (use for xml representation) |
toString | public String toString()(Code) | | Return the representation of this element.
Use the XML representation of the object for the toString() method.
the XML description of this object. |
toXML | public String toXML()(Code) | | Represents this element by it's XML description.
Use a default indent set to 0.
the XML description of this object. |
toXML | public String toXML(int indent)(Code) | | Represents this element by it's XML description.
Parameters: indent - use this indent for prexifing XML representation. the XML description of this object. |
|
|
|