public interface Restorable
The exact structure of the XML document is the responsibility of the implementation. However, to encourage data
sharing between similar implementations, each implementation of Restorable should design
restoreState
to accept and ignore unknown structures in state documents. Otherwise, implementations
should clearly document how they will behave when encountering an unknown structure.
See the WorldWideWeb Consortium's (W3C) documentation on Extensible Markup Language (XML) 1.1 for information on XML.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getRestorableState()
Returns an XML document string describing the object's state.
|
void |
restoreState(java.lang.String stateInXml)
Restores the object's state to what is described in the specified XML document string.
|
java.lang.String getRestorableState()
restoreState
and passing the XML document.void restoreState(java.lang.String stateInXml)
stateInXml
- an XML document string describing an object's state.