<ENTRY> : Dictionary Entry

Java class : leon.view.LyEntry

ROLE

An entry represents a node or a leaf of a dictionary. An entry may contain several sub-entries.

ATTRIBUTES

<!ATTLIST ENTRY
	  id NMTOKEN #REQUIRED
	  template NMTOKEN #IMPLIED
	  label CDATA #REQUIRED
	  checked ( true | false) "false"
	  open ( true | false) "false"
	  validity ( VALID | INVALID | PARTIALLY) "VALID"
	  image CDATA #IMPLIED
	  font CDATA #IMPLIED
	  color CDATA #IMPLIED
	  fontColor CDATA #IMPLIED
	  selectedBackgroundColor CDATA #IMPLIED
	  selectedFontColor CDATA #IMPLIED
	  inactiveSelectedBackgroundColor CDATA #IMPLIED
	  emptyCheckboxImage CDATA #IMPLIED
	  selectedCheckboxImage CDATA #IMPLIED>
Attribute Mand. Description Default
id yes Identifier of the entry. It represents the internal value of the application associated to the entry.  
template no ENTRY.template  
label yes Label of the entry.  
checked no Indicates whether the box representing the entry is checked or not. false
open no Indicates whether the entry is open or not (only if it is a node). false
validity no Indicates if the entry is valid, invalid or partially valid. By default the entry is valid. VALID
image no Image of the entry.  
font no ENTRY.font  
color no ENTRY.color  
fontColor no ENTRY.fontColor  
selectedBackgroundColor no ENTRY.selectedBackgroundColor  
selectedFontColor no ENTRY.selectedFontColor  
inactiveSelectedBackgroundColor no ENTRY.inactiveSelectedBackgroundColor  
emptyCheckboxImage no ENTRY.emptyCheckboxImage  
selectedCheckboxImage no ENTRY.selectedCheckboxImage  

ELEMENTS

<!ELEMENT ENTRY 
	  (ENTRY*)>
Element Mand. Mult. Description
ENTRY no yes Sub-entries.

SAMPLE

<ENTRY id="root" label="Root" open="true">
	<ENTRY id="1" label="Entry1"/>
	<ENTRY id="2" label="Entry2"/>
</ENTRY>