|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.enhydra.zeus.UnmarshalledObject
UnmarshalledObject
represents an object that has been
unmarshalled by Zeus. It allows access to the original document's
system and public IDs for use in marshalling.
Field Summary | |
protected java.lang.Object |
object
The object that was unmarshalled |
protected java.lang.String |
publicID
The public ID of the original XML document |
protected java.lang.String |
systemID
The system ID of the original XML document |
Constructor Summary | |
UnmarshalledObject(java.lang.Object object)
This creates a new instance of an unmarshalled object, with no system or public ID. |
|
UnmarshalledObject(java.lang.Object object,
java.lang.String publicID,
java.lang.String systemID)
A simple contructor that accepts the object, system ID, and public ID as parameters. |
Method Summary | |
java.lang.Object |
getObject()
This returns the object graph that represents an XML document. |
java.lang.String |
getPublicID()
Returns the public ID of the DTD to which the XML document representation of the content must conform. |
java.lang.String |
getSystemID()
Returns the system ID of the DTD to which the XML document representation of the content must conform. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected java.lang.Object object
protected java.lang.String systemID
protected java.lang.String publicID
Constructor Detail |
public UnmarshalledObject(java.lang.Object object, java.lang.String publicID, java.lang.String systemID)
A simple contructor that accepts the object, system ID, and public ID as parameters.
object
- the Object graph representing an XML documentsystemID
- the system ID of the DTD to which the
XML document must conformpublicID
- the public ID of the DTD to which the
XML document must conformpublic UnmarshalledObject(java.lang.Object object)
This creates a new instance of an unmarshalled object, with no system or public ID.
object
- the Object graph representing an XML documentMethod Detail |
public java.lang.Object getObject()
This returns the object graph that represents an XML document.
Object
graph representing an XML documentpublic java.lang.String getSystemID()
Returns the system ID of the DTD to which the XML document representation of the content must conform.
String
system ID of the DTD to which
the XML document representation of the content must conform.public java.lang.String getPublicID()
Returns the public ID of the DTD to which the XML document representation of the content must conform.
String
public ID of the DTD to which
the XML document representation of the content must conform.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |