Defines a list entry or a key/value pair for a map.
Attributes
-
key=string
, required
- The entry's key. Note, the entry's key is only required if used inside a
map
.
-
value=string
, required
- The entry's value.
Appears In
map
,
list
Examples
<map id="JWS_SERVLET_LOGLEVEL">
<entry key="NONE" value="None"/>
<entry key="FATAL" value="Fatal"/>
<entry key="WARNING" value="Warning"/>
<entry key="INFORMATIONAL" value="Informational"/>
<entry key="DEBUG" value="Debug"/>
</map>
<list id="DOWNLOAD">
<entry value="eager"/>
<entry value="lazy"/>
</list>