Serialized Form


Package org.jdom

Class org.jdom.Attribute extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialized Fields

name

String name
The local name of the Attribute


value

String value
The value of the Attribute


type

int type
The type of the Attribute


parent

Object parent
Parent element, or null if none

Class org.jdom.CDATA extends Text implements Serializable

Class org.jdom.Comment extends Object implements Serializable

Serialized Fields

text

String text
Text of the Comment


parent

Object parent
Parent element, document, or null if none

Class org.jdom.DataConversionException extends JDOMException implements Serializable

Class org.jdom.DocType extends Object implements Serializable

Serialized Fields

elementName

String elementName
The element being constrained


publicID

String publicID
The public ID of the DOCTYPE


systemID

String systemID
The system ID of the DOCTYPE


document

Document document
The document having this DOCTYPE


internalSubset

String internalSubset
The internal subset of the DOCTYPE

Class org.jdom.Document extends Object implements Serializable

Serialized Fields

content

ContentList content
This Document's Comments, ProcessingInstructions and the root Element.


docType

DocType docType
The DocType declaration.

Class org.jdom.Element extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialized Fields

name

String name
The local name of the Element


parent

Object parent
Parent element, document, or null if none


attributes

AttributeList attributes
The attributes of the Element.


content

ContentList content
The mixed content of the Element.

Class org.jdom.EntityRef extends Object implements Serializable

Serialized Fields

name

String name
The name of the EntityRef


publicID

String publicID
The PublicID of the EntityRef


systemID

String systemID
The SystemID of the EntityRef


parent

Object parent
Parent element or null if none

Class org.jdom.IllegalAddException extends IllegalArgumentException implements Serializable

Class org.jdom.IllegalDataException extends IllegalArgumentException implements Serializable

Class org.jdom.IllegalNameException extends IllegalArgumentException implements Serializable

Class org.jdom.IllegalTargetException extends IllegalArgumentException implements Serializable

Class org.jdom.JDOMException extends Exception implements Serializable

Serialized Fields

cause

Throwable cause
A wrapped Throwable

Class org.jdom.ProcessingInstruction extends Object implements Serializable

Serialized Fields

target

String target
The target of the PI


rawData

String rawData
The data for the PI as a String


mapData

Map mapData
The data for the PI in name/value pairs


parent

Object parent
Parent element, document, or null if none

Class org.jdom.Text extends Object implements Serializable

Serialized Fields

value

String value
The actual character content


parent

Object parent
This Text node's parent.


Package org.jdom.xpath

Class org.jdom.xpath.XPath extends Object implements Serializable

Serialization Methods

writeReplace

protected final Object writeReplace()
                             throws ObjectStreamException
[Serialization support] Returns the alternative object to write to the stream when serializing this object. This method returns an instance of a dedicated nested class to serialize XPath expressions independently of the concrete implementation being used.

Note: Subclasses are not allowed to override this method to ensure valid serialization of all implementations.

Throws:
ObjectStreamException - never.


Package org.jdom.input

Class org.jdom.input.JDOMParseException extends JDOMException implements Serializable

Serialized Fields

partialDocument

Document partialDocument
The portion of the document that was successfully built before the parse error occurred.



Copyright ? 2003 Jason Hunter, Brett McLaughlin. All Rights Reserved.