public interface XMLMap
Although not strictly required, each implementing class should utilize the init method for intialization and subsequently call the destroy method in order to release resources.
Modifier and Type | Method and Description |
---|---|
void |
destroy()
Should release resources and call the finalize method.
|
java.util.List |
getKeys()
Method to retrieve the list of names used to identify desired values.
|
java.lang.Object |
getValue(java.lang.String name)
Accessor method for retrieving a specific named value.
|
java.util.List |
getValues()
Method to retrieve the list of values stored in this map.
|
boolean |
init()
Should initialize members as required.
|
void |
setMap()
Use this method to populate the XMLMap with the desired named values.
|
void |
setValue(java.lang.String name,
java.lang.Object xmlObject)
Setter method for updating a specific named value.
|
boolean init()
void destroy()
void setMap()
java.util.List getKeys()
java.util.List getValues()
java.lang.Object getValue(java.lang.String name)
void setValue(java.lang.String name, java.lang.Object xmlObject)