Package ecologylab.xml.types.element

Subclasses of ElementState that define nested XML elements.

See:
          Description

Interface Summary
Mappable<T> Implemented by objects that provide a key for automatic insertion into a Map.
 

Class Summary
ArrayListState<T extends ElementState> An ElementState XML tree node for collecting a set of nested elements, using an ArrayList (non-synchronized).
ElementTypeTranslations Translations for built-in element types.
HashMapState<K,V extends ElementState & Mappable<K>> An ElementState XML tree node that supports a HashMap whose values are Mappable (capable of supplying their own key into the map).
HashSetState<T extends ElementState> An ElementState XML tree node that supports an ArrayList of children (as well as whatever else you add to it).
IntState Reference version of an int type.
StringState  
SynchronizedHashMapState<K,V extends ElementState & Mappable<K>> An ElementState XML tree node that supports a HashMap whose values are Mappable (capable of supplying their own key into the map).
VectorState<T extends ElementState> An ElementState XML tree node for collecting a set of nested elements, using a Vector (synchronized).
 

Package ecologylab.xml.types.element Description

Subclasses of ElementState that define nested XML elements. These include single elements, collections, and maps.