<HREFS> : List of Hyperlinks

Java class : leon.view.LyHRefs

ROLE

An input field of Hyperlinks type allows displaying a graphical component containing a set of hyperlinks.
Such a component is a simple list of hyperlinks such as described below.
It does not contain any attribute.

ATTRIBUTES

<!ATTLIST HREFS
	  id NMTOKEN #IMPLIED
	  template NMTOKEN #IMPLIED
	  bean CDATA #IMPLIED
	  border ( true | false) "true"
	  nCols NMTOKEN #IMPLIED
	  nRows NMTOKEN #IMPLIED
	  font CDATA #IMPLIED
	  color CDATA #IMPLIED
	  fontColor CDATA #IMPLIED
	  disabledFontColor CDATA #IMPLIED
	  visitedFontColor CDATA #IMPLIED
	  highlightColor CDATA #IMPLIED>
Attribute Mand. Description Default
id no HREFS.id  
template no HREFS.template  
bean no Allows specifying the name of a Java class that replaces the default graphical component.  
border no Indicates if a border must be drawn around the hyperlinks. true
nCols no Gives the height (number of columns) on which the lines are shown (given in number of characters). -1
nRows no Gives the width (number of rows) on which the lines are shown (given in number of characters). -1
font no HREFS.font  
color no HREFS.color  
fontColor no HREFS.fontColor  
disabledFontColor no Font color used when hyperlinks are disabled.  
visitedFontColor no Font color used when hyperlinks are visited.  
highlightColor no HREFS.highlightColor  

ELEMENTS

<!ELEMENT HREFS 
	  (HREF*)>
Element Mand. Mult. Description
HREF no yes List of hyperlinks.

SAMPLE

<!-- Hyperlinks pointing to users -->
<HREFS>
	<HREF id="dbe" label="David Bertrand" image="user.gif" />
	<HREF id="ble" label="Bruno Lebon" image="user.gif" visited="true"/>
</HREFS>