public class RestorableSupport
extends java.lang.Object
restorableState
element. State is stored in
stateObject
elements. Each stateObject
element is identified by its name
attribute. The value of a stateObject
can either be simple text content, or nested
stateObject
elements.
For example, this document stores four states: the string "Hello World!", the largest value an unsigned byte can
hold, the value of PI to six digits, and a boolean "true".
<?xml version="1.0" encoding="UTF-8"?>
<restorableState>
<stateObject name="helloWorldString">Hello World!</stateObject>
<stateObject name="maxUnsignedByteValue">255</stateObject>
<stateObject name="pi">3.141592</stateObject>
<stateObject name="booleanTrue">true</stateObject>
</restorableState>
Callers can create a new RestorableSupport with no state content, or create a RestorableSupport from an
existing XML document string. Callers can then add state by name and value, and query state by name.
RestorableSupport provides convenience methods for addding and querying state values as Strings, Integers, Doubles,
and Booleans.Restorable
Modifier and Type | Class and Description |
---|---|
static class |
RestorableSupport.StateObject
An interface to the
stateObject elements in an XML state document, as defined by RestorableSupport . |
Modifier and Type | Field and Description |
---|---|
protected static java.lang.String |
DEFAULT_DOCUMENT_ELEMENT_TAG_NAME |
protected static java.lang.String |
DEFAULT_STATE_OBJECT_TAG_NAME |
protected org.w3c.dom.Document |
doc |
protected java.lang.String |
stateObjectTagName |
protected javax.xml.xpath.XPath |
xpath |
Modifier | Constructor and Description |
---|---|
protected |
RestorableSupport(org.w3c.dom.Document doc)
Creates a new RestorableSupport with no contents and using a specified
Document . |
Modifier and Type | Method and Description |
---|---|
RestorableSupport.StateObject |
addStateObject(RestorableSupport.StateObject context,
java.lang.String name)
Adds a new StateObject with the specified
name . |
RestorableSupport.StateObject |
addStateObject(java.lang.String name)
Adds a new StateObject with the specified
name . |
void |
addStateValueAsBoolean(RestorableSupport.StateObject context,
java.lang.String name,
boolean booleanValue)
Adds a new StateObject with the specified
name and Boolean value . |
void |
addStateValueAsBoolean(java.lang.String name,
boolean booleanValue)
Adds a new StateObject with the specified
name and Boolean value . |
void |
addStateValueAsColor(RestorableSupport.StateObject context,
java.lang.String name,
java.awt.Color color) |
void |
addStateValueAsColor(java.lang.String name,
java.awt.Color color) |
void |
addStateValueAsDouble(RestorableSupport.StateObject context,
java.lang.String name,
double doubleValue)
Adds a new StateObject with the specified
name and Double value . |
void |
addStateValueAsDouble(java.lang.String name,
double doubleValue)
Adds a new StateObject with the specified
name and Double value . |
void |
addStateValueAsImageSourceList(RestorableSupport.StateObject context,
java.lang.String name,
java.util.Map<java.lang.Integer,java.lang.Object> imageSources,
int faceCount) |
void |
addStateValueAsImageSourceList(java.lang.String name,
java.util.Map<java.lang.Integer,java.lang.Object> imageSources,
int faceCount) |
void |
addStateValueAsInteger(RestorableSupport.StateObject context,
java.lang.String name,
int intValue)
Adds a new StateObject with the specified
name and Integer value . |
void |
addStateValueAsInteger(java.lang.String name,
int intValue)
Adds a new StateObject with the specified
name and Integer value . |
void |
addStateValueAsLatLon(RestorableSupport.StateObject context,
java.lang.String name,
LatLon location) |
void |
addStateValueAsLatLon(java.lang.String name,
LatLon location) |
void |
addStateValueAsLatLonList(RestorableSupport.StateObject context,
java.lang.String name,
java.lang.Iterable<? extends LatLon> locations) |
void |
addStateValueAsOffsetPair(RestorableSupport.StateObject context,
java.lang.String name,
float[] offsetPair) |
void |
addStateValueAsOffsets(RestorableSupport.StateObject context,
java.lang.String name,
OffsetsList offsets) |
void |
addStateValueAsOffsets(java.lang.String name,
OffsetsList offsets) |
void |
addStateValueAsOffsetsList(RestorableSupport.StateObject context,
java.lang.String name,
java.util.Map<java.lang.Integer,OffsetsList> offsets) |
void |
addStateValueAsPosition(RestorableSupport.StateObject context,
java.lang.String name,
Position position) |
void |
addStateValueAsPosition(java.lang.String name,
Position position) |
void |
addStateValueAsSector(RestorableSupport.StateObject context,
java.lang.String name,
Sector sector) |
void |
addStateValueAsSector(java.lang.String name,
Sector sector) |
void |
addStateValueAsString(RestorableSupport.StateObject context,
java.lang.String name,
java.lang.String value)
Adds a new StateObject with the specified
name and String value . |
void |
addStateValueAsString(RestorableSupport.StateObject context,
java.lang.String name,
java.lang.String value,
boolean escapeValue)
Adds a new StateObject with the specified
name and String value . |
void |
addStateValueAsString(java.lang.String name,
java.lang.String value)
Adds a new StateObject with the specified
name and String value . |
void |
addStateValueAsString(java.lang.String name,
java.lang.String value,
boolean escapeValue)
Adds a new StateObject with the specified
name and String value . |
static void |
adjustTitleAndDisplayName(AVList params) |
protected boolean |
containsElement(org.w3c.dom.Element elem) |
protected static void |
createDocumentElement(org.w3c.dom.Document doc,
java.lang.String tagName) |
protected RestorableSupport.StateObject |
createStateObject(org.w3c.dom.Element context,
java.lang.String name,
java.lang.String value) |
protected RestorableSupport.StateObject |
createStateObject(org.w3c.dom.Element context,
java.lang.String name,
java.lang.String value,
boolean escapeValue) |
static java.awt.Color |
decodeColor(java.lang.String encodedString)
Returns the Color described by the String
encodedString . |
static java.lang.String |
encodeColor(java.awt.Color color)
Returns a String encoding of the specified
color . |
protected RestorableSupport.StateObject[] |
extractStateObjects(org.w3c.dom.Element context) |
protected RestorableSupport.StateObject[] |
findAllStateObjects(org.w3c.dom.Node context,
java.lang.String name) |
protected RestorableSupport.StateObject |
findStateObject(org.w3c.dom.Node context,
java.lang.String name) |
RestorableSupport.StateObject[] |
getAllStateObjects(RestorableSupport.StateObject context)
Returns all StateObjects directly beneath the a context StateObject.
|
RestorableSupport.StateObject[] |
getAllStateObjects(RestorableSupport.StateObject context,
java.lang.String name)
Returns all StateObjects with the specified
name . |
RestorableSupport.StateObject[] |
getAllStateObjects(java.lang.String name)
Returns any StateObjects directly beneath the document root that have the specified
name . |
protected org.w3c.dom.Element |
getDocumentElement() |
java.lang.String |
getDocumentElementTagName()
Returns the String that represents the document element name.
|
java.lang.String |
getStateAsXml()
Returns an XML document string describing this RestorableSupport's current set of state objects.
|
RestorableSupport.StateObject |
getStateObject(RestorableSupport.StateObject context,
java.lang.String name)
Returns the StateObject with the specified
name . |
RestorableSupport.StateObject |
getStateObject(java.lang.String name)
Returns the StateObject with the specified
name . |
java.lang.Boolean |
getStateObjectAsBoolean(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a Boolean.
|
java.awt.Color |
getStateObjectAsColor(RestorableSupport.StateObject stateObject) |
java.lang.Double |
getStateObjectAsDouble(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a Double.
|
java.lang.Float |
getStateObjectAsFloat(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a Float.
|
java.util.HashMap<java.lang.Integer,java.lang.Object> |
getStateObjectAsImageSourceList(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a HashMap of
|
java.lang.Integer |
getStateObjectAsInteger(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as an Integer.
|
LatLon |
getStateObjectAsLatLon(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a LatLon.
|
java.util.List<LatLon> |
getStateObjectAsLatLonList(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a List of LatLons.
|
java.lang.Long |
getStateObjectAsLong(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a Long.
|
float[] |
getStateObjectAsOffsetPair(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a float[].
|
OffsetsList |
getStateObjectAsOffsets(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a OffsetsList.
|
java.util.HashMap<java.lang.Integer,OffsetsList> |
getStateObjectAsOffsetsList(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a HashMap of
|
Position |
getStateObjectAsPosition(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a Position.
|
Sector |
getStateObjectAsSector(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a Sector.
|
java.lang.String |
getStateObjectAsString(RestorableSupport.StateObject stateObject)
Returns the value of the StateObject as a String.
|
java.lang.String |
getStateObjectTagName()
Returns the String to be used for each state object's tag name.
|
java.lang.Boolean |
getStateValueAsBoolean(RestorableSupport.StateObject context,
java.lang.String name)
Returns the value of the StateObject with the specified
name as a Boolean. |
java.lang.Boolean |
getStateValueAsBoolean(java.lang.String name)
Returns the value of the StateObject with the specified
name as a Boolean. |
java.awt.Color |
getStateValueAsColor(RestorableSupport.StateObject context,
java.lang.String name) |
java.lang.Double |
getStateValueAsDouble(RestorableSupport.StateObject context,
java.lang.String name)
Returns the value of the StateObject with the specified
name as a Double. |
java.lang.Double |
getStateValueAsDouble(java.lang.String name)
Returns the value of the StateObject with the specified
name as a Double. |
java.lang.Float |
getStateValueAsFloat(RestorableSupport.StateObject context,
java.lang.String name)
Returns the value of the StateObject with the specified
name as a Float. |
java.lang.Float |
getStateValueAsFloat(java.lang.String name)
Returns the value of the StateObject with the specified
name as a Float. |
java.util.HashMap<java.lang.Integer,java.lang.Object> |
getStateValueAsImageSourceList(RestorableSupport.StateObject context,
java.lang.String name) |
java.util.HashMap<java.lang.Integer,java.lang.Object> |
getStateValueAsImageSourceList(java.lang.String name) |
java.lang.Integer |
getStateValueAsInteger(RestorableSupport.StateObject context,
java.lang.String name)
Returns the value of the StateObject with the specified
name as an Integer. |
java.lang.Integer |
getStateValueAsInteger(java.lang.String name)
Returns the value of the StateObject with the specified
name as an Integer. |
LatLon |
getStateValueAsLatLon(RestorableSupport.StateObject context,
java.lang.String name) |
LatLon |
getStateValueAsLatLon(java.lang.String name) |
java.util.List<LatLon> |
getStateValueAsLatLonList(RestorableSupport.StateObject context,
java.lang.String name) |
java.util.List<LatLon> |
getStateValueAsLatLonList(java.lang.String name) |
java.lang.Long |
getStateValueAsLong(RestorableSupport.StateObject context,
java.lang.String name)
Returns the value of the StateObject with the specified
name as a Long. |
java.lang.Long |
getStateValueAsLong(java.lang.String name)
Returns the value of the StateObject with the specified
name as a Long. |
float[] |
getStateValueAsOffsetPair(RestorableSupport.StateObject context,
java.lang.String name) |
float[] |
getStateValueAsOffsetPair(java.lang.String name) |
OffsetsList |
getStateValueAsOffsets(RestorableSupport.StateObject context,
java.lang.String name) |
OffsetsList |
getStateValueAsOffsets(java.lang.String name) |
java.util.HashMap<java.lang.Integer,OffsetsList> |
getStateValueAsOffsetsList(RestorableSupport.StateObject context,
java.lang.String name) |
java.util.HashMap<java.lang.Integer,OffsetsList> |
getStateValueAsOffsetsList(java.lang.String name) |
Position |
getStateValueAsPosition(RestorableSupport.StateObject context,
java.lang.String name) |
Position |
getStateValueAsPosition(java.lang.String name) |
Sector |
getStateValueAsSector(RestorableSupport.StateObject context,
java.lang.String name) |
Sector |
getStateValueAsSector(java.lang.String name) |
java.lang.String |
getStateValueAsString(RestorableSupport.StateObject context,
java.lang.String name)
Returns the value of the StateObject with the specified
name as a String. |
java.lang.String |
getStateValueAsString(java.lang.String name)
Returns the value of the StateObject with the specified
name as a String. |
static RestorableSupport |
newRestorableSupport()
Creates a new RestorableSupport with no contents.
|
static RestorableSupport |
newRestorableSupport(java.lang.String documentElementName)
Creates a new RestorableSupport with no contents.
|
static RestorableSupport |
parse(java.lang.String stateInXml)
Creates a new RestorableSupport with the contents of the specified state document.
|
void |
setStateObjectTagName(java.lang.String stateObjectTagName)
Sets the String to be used for each state object's tag name.
|
java.lang.String |
toString()
Returns an XML document string describing this RestorableSupport's current set of state objects.
|
protected static final java.lang.String DEFAULT_DOCUMENT_ELEMENT_TAG_NAME
protected static final java.lang.String DEFAULT_STATE_OBJECT_TAG_NAME
protected org.w3c.dom.Document doc
protected java.lang.String stateObjectTagName
protected javax.xml.xpath.XPath xpath
protected RestorableSupport(org.w3c.dom.Document doc)
Document
.doc
- the document to hold the restorable state.java.lang.IllegalArgumentException
- if the document reference is null.public RestorableSupport.StateObject addStateObject(RestorableSupport.StateObject context, java.lang.String name)
name
. If context
is not null, the new
StateObject is nested directly beneath the specified context
. Otherwise, the new StateObject is
placed directly beneath the document root. If a StateObject with this name already exists, a new one is still
created.context
- the StateObject under which the new StateObject is created, or null to place it under the document
root.name
- the new StateObject's name.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public RestorableSupport.StateObject addStateObject(java.lang.String name)
name
. The new StateObject is placed directly beneath the
document root. If a StateObject with this name already exists, a new one is still created.name
- the new StateObject's name.java.lang.IllegalArgumentException
- If name
is null.public void addStateValueAsBoolean(RestorableSupport.StateObject context, java.lang.String name, boolean booleanValue)
name
and Boolean value
. If
context
is not null, the new StateObject is nested directly beneath the specified
context
. Otherwise, the new StateObject is placed directly beneath the document root. If a
StateObject with this name already exists, a new one is still created.context
- the StateObject context under which the new StateObject is created, or null to place it under
the document root.name
- the new StateObject's name.booleanValue
- the new StateObject's Boolean value.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public void addStateValueAsBoolean(java.lang.String name, boolean booleanValue)
name
and Boolean value
. The new StateObject
is placed beneath the document root. If a StateObject with this name already exists, a new one is still created.name
- the new StateObject's name.booleanValue
- the new StateObject's Boolean value.java.lang.IllegalArgumentException
- If name
is null.public void addStateValueAsColor(RestorableSupport.StateObject context, java.lang.String name, java.awt.Color color)
public void addStateValueAsColor(java.lang.String name, java.awt.Color color)
public void addStateValueAsDouble(RestorableSupport.StateObject context, java.lang.String name, double doubleValue)
name
and Double value
. If
context
is not null, the new StateObject is nested directly beneath the specified
context
. Otherwise, the new StateObject is placed directly beneath the document root. If a
StateObject with this name already exists, a new one is still created.context
- the StateObject context under which the new StateObject is created, or null to place it under
the document root.name
- the new StateObject's name.doubleValue
- the new StateObject's Double value.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public void addStateValueAsDouble(java.lang.String name, double doubleValue)
name
and Double value
. The new StateObject is
placed beneath the document root. If a StateObject with this name already exists, a new one is still created.name
- the new StateObject's name.doubleValue
- the new StateObject's Double value.java.lang.IllegalArgumentException
- If name
is null.public void addStateValueAsImageSourceList(RestorableSupport.StateObject context, java.lang.String name, java.util.Map<java.lang.Integer,java.lang.Object> imageSources, int faceCount)
public void addStateValueAsImageSourceList(java.lang.String name, java.util.Map<java.lang.Integer,java.lang.Object> imageSources, int faceCount)
public void addStateValueAsInteger(RestorableSupport.StateObject context, java.lang.String name, int intValue)
name
and Integer value
. If
context
is not null, the new StateObject is nested directly beneath the specified
context
. Otherwise, the new StateObject is placed directly beneath the document root. If a
StateObject with this name already exists, a new one is still created.context
- the StateObject context under which the new StateObject is created, or null to place it under the
document root.name
- the new StateObject's name.intValue
- the new StateObject's Integer value.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public void addStateValueAsInteger(java.lang.String name, int intValue)
name
and Integer value
. The new StateObject
is placed beneath the document root. If a StateObject with this name already exists, a new one is still created.name
- the new StateObject's name.intValue
- the new StateObject's Integer value.java.lang.IllegalArgumentException
- If name
is null.public void addStateValueAsLatLon(RestorableSupport.StateObject context, java.lang.String name, LatLon location)
public void addStateValueAsLatLon(java.lang.String name, LatLon location)
public void addStateValueAsLatLonList(RestorableSupport.StateObject context, java.lang.String name, java.lang.Iterable<? extends LatLon> locations)
public void addStateValueAsOffsetPair(RestorableSupport.StateObject context, java.lang.String name, float[] offsetPair)
public void addStateValueAsOffsets(RestorableSupport.StateObject context, java.lang.String name, OffsetsList offsets)
public void addStateValueAsOffsets(java.lang.String name, OffsetsList offsets)
public void addStateValueAsOffsetsList(RestorableSupport.StateObject context, java.lang.String name, java.util.Map<java.lang.Integer,OffsetsList> offsets)
public void addStateValueAsPosition(RestorableSupport.StateObject context, java.lang.String name, Position position)
public void addStateValueAsPosition(java.lang.String name, Position position)
public void addStateValueAsSector(RestorableSupport.StateObject context, java.lang.String name, Sector sector)
public void addStateValueAsSector(java.lang.String name, Sector sector)
public void addStateValueAsString(RestorableSupport.StateObject context, java.lang.String name, java.lang.String value)
name
and String value
. If
context
is not null, the new StateObject is nested directly beneath the specified
context
. Otherwise, the new StateObject is placed directly beneath the document root. If a
StateObject with this name already exists, a new one is still created.context
- the StateObject context under which the new StateObject is created, or null to place it under the
document root.name
- the new StateObject's name.value
- the new StateObject's String value.java.lang.IllegalArgumentException
- If either name
or value
is null, or if
context
is not null and does not belong to this RestorableSupport.public void addStateValueAsString(RestorableSupport.StateObject context, java.lang.String name, java.lang.String value, boolean escapeValue)
name
and String value
. If
context
is not null, the new StateObject is nested directly beneath the specified
context
. Otherwise, the new StateObject is placed directly beneath the document root. If a
StateObject with this name already exists, a new one is still created. If escapeValue
is true, the
text in value
is escaped in a CDATA section. Otherwise, no special processing is performed on
value
. Once value
has been escaped and added, it can be extracted exactly like any
other String value.context
- the StateObject context under which the new StateObject is created, or null to place it under
the document root.name
- the new StateObject's name.value
- the new StateObject's String value.escapeValue
- whether to escape the String value
or not.java.lang.IllegalArgumentException
- If either name
or value
is null, or if
context
is not null and does not belong to this RestorableSupport.public void addStateValueAsString(java.lang.String name, java.lang.String value)
name
and String value
. The new StateObject is
placed beneath the document root. If a StateObject with this name already exists, a new one is still created.name
- the new StateObject's name.value
- the new StateObject's String value.java.lang.IllegalArgumentException
- If either name
or value
is null.public void addStateValueAsString(java.lang.String name, java.lang.String value, boolean escapeValue)
name
and String value
. The new StateObject is
placed beneath the document root. If a StateObject with this name already exists, a new one is still created. If
escapeValue
is true, the text in value
is escaped in a CDATA section. Otherwise, no
special processing is performed on value
. Once value
has been escaped and added, it can
be extracted exactly like any other String value.name
- the new StateObject's name.value
- the new StateObject's String value.escapeValue
- whether to escape the String value
or not.java.lang.IllegalArgumentException
- If either name
or value
is null.public static void adjustTitleAndDisplayName(AVList params)
protected boolean containsElement(org.w3c.dom.Element elem)
protected static void createDocumentElement(org.w3c.dom.Document doc, java.lang.String tagName)
protected RestorableSupport.StateObject createStateObject(org.w3c.dom.Element context, java.lang.String name, java.lang.String value)
protected RestorableSupport.StateObject createStateObject(org.w3c.dom.Element context, java.lang.String name, java.lang.String value, boolean escapeValue)
public static java.awt.Color decodeColor(java.lang.String encodedString)
encodedString
. This understands Colors encoded with a call
to encodeColor(java.awt.Color)
. If encodedString
cannot be decoded, this method returns
null.encodedString
- String to decode.encodedString
, or null if the String cannot be decoded.java.lang.IllegalArgumentException
- If encodedString
is null.public static java.lang.String encodeColor(java.awt.Color color)
color
. The Color can be restored with a call to decodeColor(String)
.color
- Color to encode.color
.java.lang.IllegalArgumentException
- If color
is null.protected RestorableSupport.StateObject[] extractStateObjects(org.w3c.dom.Element context)
protected RestorableSupport.StateObject[] findAllStateObjects(org.w3c.dom.Node context, java.lang.String name)
protected RestorableSupport.StateObject findStateObject(org.w3c.dom.Node context, java.lang.String name)
public RestorableSupport.StateObject[] getAllStateObjects(RestorableSupport.StateObject context)
context
. Otherwise, this method returns all the
StateObjects directly beneath the document root.context
- StateObject context to search, or null to search the document root.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public RestorableSupport.StateObject[] getAllStateObjects(RestorableSupport.StateObject context, java.lang.String name)
name
. If context is not null, this method searches the
StateObjects directly below the specified context
. Otherwise, this method searches the StateObjects
directly beneath the document root. If no StateObjects with that name exist, this method returns a valid
StateObject array with zero length.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public RestorableSupport.StateObject[] getAllStateObjects(java.lang.String name)
name
. If no
StateObjects with that name exist, this method returns a valid StateObject array with zero length.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.protected org.w3c.dom.Element getDocumentElement()
public java.lang.String getDocumentElementTagName()
public java.lang.String getStateAsXml()
public RestorableSupport.StateObject getStateObject(RestorableSupport.StateObject context, java.lang.String name)
name
. If context is not null, this method searches the
StateObjects directly below the specified context
. Otherwise, this method searches the StateObjects
directly beneath the document root. If no StateObject with that name exists, this method returns null.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public RestorableSupport.StateObject getStateObject(java.lang.String name)
name
. This searches the StateObjects directly beneath the
document root. If no StateObject with that name exists, this method returns null.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.public java.lang.Boolean getStateObjectAsBoolean(RestorableSupport.StateObject stateObject)
Boolean.valueOf
.stateObject
- the StateObject that is converted to a Boolean.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.awt.Color getStateObjectAsColor(RestorableSupport.StateObject stateObject)
public java.lang.Double getStateObjectAsDouble(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a Double.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.lang.Float getStateObjectAsFloat(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a Float.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.util.HashMap<java.lang.Integer,java.lang.Object> getStateObjectAsImageSourceList(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a HashMap of imageSources.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.lang.Integer getStateObjectAsInteger(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to an Integer.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public LatLon getStateObjectAsLatLon(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a LatLon.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.util.List<LatLon> getStateObjectAsLatLonList(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a List of LatLons.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.lang.Long getStateObjectAsLong(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a Long.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public float[] getStateObjectAsOffsetPair(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a float[].java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public OffsetsList getStateObjectAsOffsets(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a OffsetsList.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.util.HashMap<java.lang.Integer,OffsetsList> getStateObjectAsOffsetsList(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a HashMap of OffsetsLists.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public Position getStateObjectAsPosition(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a Position.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public Sector getStateObjectAsSector(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a Sector.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.lang.String getStateObjectAsString(RestorableSupport.StateObject stateObject)
stateObject
- the StateObject that is converted to a String.java.lang.IllegalArgumentException
- If stateObject
is null, or does not belong to this
RestorableSupport.public java.lang.String getStateObjectTagName()
public java.lang.Boolean getStateValueAsBoolean(RestorableSupport.StateObject context, java.lang.String name)
name
as a Boolean. If context is not null,
this method searches the StateObjects directly below the specified context
. Otherwise, this method
searches the StateObjects directly beneath the document root. If no StateObject with that name exists, this
method returns null. Otherwise, the Boolean value returned is equivalent to passing the StateObject's String
value to Boolean.valueOf
.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public java.lang.Boolean getStateValueAsBoolean(java.lang.String name)
name
as a Boolean. This method searches the
StateObjects directly beneath the document root. If no StateObject with that name exists, this method returns
null. Otherwise, the Boolean value returned is equivalent to passing the StateObject's String value to
Boolean.valueOf
.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.public java.awt.Color getStateValueAsColor(RestorableSupport.StateObject context, java.lang.String name)
public java.lang.Double getStateValueAsDouble(RestorableSupport.StateObject context, java.lang.String name)
name
as a Double. If context is not null,
this method searches the StateObjects directly below the specified context
. Otherwise, this searches
the StateObjects directly beneath the document root. If no StateObject with that name exists, or if the value of
that StateObject is not a Double, this method returns null.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public java.lang.Double getStateValueAsDouble(java.lang.String name)
name
as a Double. This method searches the
StateObjects directly beneath the document root. If no StateObject with that name exists, or if the value of that
StateObject is not a Double, this method returns null.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.public java.lang.Float getStateValueAsFloat(RestorableSupport.StateObject context, java.lang.String name)
name
as a Float. If context is not null,
this method searches the StateObjects directly below the specified context
. Otherwise, this searches
the StateObjects directly beneath the document root. If no StateObject with that name exists, or if the value of
that StateObject is not a Float, this method returns null.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public java.lang.Float getStateValueAsFloat(java.lang.String name)
name
as a Float. This method searches the
StateObjects directly beneath the document root. If no StateObject with that name exists, or if the value of that
StateObject is not a Float, this method returns null.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.public java.util.HashMap<java.lang.Integer,java.lang.Object> getStateValueAsImageSourceList(RestorableSupport.StateObject context, java.lang.String name)
public java.util.HashMap<java.lang.Integer,java.lang.Object> getStateValueAsImageSourceList(java.lang.String name)
public java.lang.Integer getStateValueAsInteger(RestorableSupport.StateObject context, java.lang.String name)
name
as an Integer. If context is not null,
this method searches the StateObjects directly below the specified context
. Otherwise, this method
searches the StateObjects directly beneath the document root. If no StateObject with that name exists, or if the
value of that StateObject is not an Integer, this method returns null.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public java.lang.Integer getStateValueAsInteger(java.lang.String name)
name
as an Integer. This method searches the
StateObjects directly beneath the document root. If no StateObject with that name exists, or if the value of that
StateObject is not an Integer, this method returns null.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.public LatLon getStateValueAsLatLon(RestorableSupport.StateObject context, java.lang.String name)
public LatLon getStateValueAsLatLon(java.lang.String name)
public java.util.List<LatLon> getStateValueAsLatLonList(RestorableSupport.StateObject context, java.lang.String name)
public java.util.List<LatLon> getStateValueAsLatLonList(java.lang.String name)
public java.lang.Long getStateValueAsLong(RestorableSupport.StateObject context, java.lang.String name)
name
as a Long. If context is not null, this
method searches the StateObjects directly below the specified context
. Otherwise, this method
searches the StateObjects directly beneath the document root. If no StateObject with that name exists, or if the
value of that StateObject is not a Double, this method returns null.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public java.lang.Long getStateValueAsLong(java.lang.String name)
name
as a Long. This searches the
StateObjects directly beneath the document root. If no StateObject with that name exists, or if the value of that
StateObject is not a Long, this method returns null.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.public float[] getStateValueAsOffsetPair(RestorableSupport.StateObject context, java.lang.String name)
public float[] getStateValueAsOffsetPair(java.lang.String name)
public OffsetsList getStateValueAsOffsets(RestorableSupport.StateObject context, java.lang.String name)
public OffsetsList getStateValueAsOffsets(java.lang.String name)
public java.util.HashMap<java.lang.Integer,OffsetsList> getStateValueAsOffsetsList(RestorableSupport.StateObject context, java.lang.String name)
public java.util.HashMap<java.lang.Integer,OffsetsList> getStateValueAsOffsetsList(java.lang.String name)
public Position getStateValueAsPosition(RestorableSupport.StateObject context, java.lang.String name)
public Position getStateValueAsPosition(java.lang.String name)
public Sector getStateValueAsSector(RestorableSupport.StateObject context, java.lang.String name)
public Sector getStateValueAsSector(java.lang.String name)
public java.lang.String getStateValueAsString(RestorableSupport.StateObject context, java.lang.String name)
name
as a String. If context is not null,
this method searches the StateObjects directly below the specified context
. Otherwise, this method
searches the StateObjects directly beneath the document root. If no StateObject with that name exists, or if the
value of that StateObject is not a String, this method returns null.context
- StateObject context to search, or null to search the document root.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null, or if context
is not null and does
not belong to this RestorableSupport.public java.lang.String getStateValueAsString(java.lang.String name)
name
as a String. This method searches the
StateObjects directly beneath the document root. If no StateObject with that name exists, or if the value of that
StateObject is not a String, this method returns null.name
- the StateObject name to search for.java.lang.IllegalArgumentException
- If name
is null.public static RestorableSupport newRestorableSupport()
public static RestorableSupport newRestorableSupport(java.lang.String documentElementName)
documentElementName
- the name of the restorable state document element.java.lang.IllegalArgumentException
- if the specified element name is null or empty.public static RestorableSupport parse(java.lang.String stateInXml)
stateInXml
- the XML document to parse for state.java.lang.IllegalArgumentException
- If stateInXml
is null, or the its contents are not a well formed
XML document.public void setStateObjectTagName(java.lang.String stateObjectTagName)
stateObjectTagName
- String to be used for each state object's tag name.java.lang.IllegalArgumentException
- If stateObjectTagName
is null.public java.lang.String toString()
toString
is equivalent to calling getStateAsXml
.toString
in class java.lang.Object