So far SolidXML have only one annotation defined: element
The @element annotation identifies fields that map with some tag from the XML file. The annotation has defined XMLTag property defined as string and it is used to declare the tag name that you wish to map for the variable.
Usage :
@element(XMLTag="tagName") private String myVar;
Previus example maps the variable myVar with the element from XML document with tag name : tagName