Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.alicebot.server.core.parser
Class XMLNode  view XMLNode download XMLNode.java

java.lang.Object
  extended byorg.alicebot.server.core.parser.XMLNode

public class XMLNode
extends java.lang.Object


Field Summary
static int CDATA
           
static int COMMENT
           
static int DATA
           
static int EMPTY
           
private static java.lang.String EMPTY_STRING
           
static int ENDTAG
           
static int TAG
           
 java.lang.String XMLAttr
           
 java.util.LinkedList XMLChild
           
 java.lang.String XMLData
           
 int XMLType
           
 
Constructor Summary
(package private) XMLNode()
           
 
Method Summary
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

TAG

public static final int TAG
See Also:
Constant Field Values

EMPTY

public static final int EMPTY
See Also:
Constant Field Values

DATA

public static final int DATA
See Also:
Constant Field Values

CDATA

public static final int CDATA
See Also:
Constant Field Values

COMMENT

public static final int COMMENT
See Also:
Constant Field Values

ENDTAG

public static final int ENDTAG
See Also:
Constant Field Values

XMLType

public int XMLType

XMLData

public java.lang.String XMLData

XMLAttr

public java.lang.String XMLAttr

XMLChild

public java.util.LinkedList XMLChild

EMPTY_STRING

private static final java.lang.String EMPTY_STRING
See Also:
Constant Field Values
Constructor Detail

XMLNode

XMLNode()
Method Detail

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).