<!ATTLIST PARAMETER name CDATA #REQUIRED value CDATA #IMPLIED idref IDREF #IMPLIED condition CDATA #IMPLIED> |
Attribute | Mand. | Description | Default |
name | yes | Name of the parameter | |
value | no | Value of the parameter. This parameter is used when the value is encoded as a string. | |
idref | no | Reference of an element in the model. This identifier must correspond to an existing element which type is the one declared in parameter declaration. | |
condition | no | The value of this attribute enables to control the existence of the paarmeter. This condition refers to a property defined or not inside the ini file of the application. If the property does not exists or equals false or equals 0, this parameter is ignored. |
<!ELEMENT PARAMETER (A_MARKS | F_MARKS | FILTER | SORT | CHART)?> |
Element | Mand. | Mult. | Description |
A_MARKS | yes | no | List of action marks used as parameter. |
F_MARKS | yes | no | List of field marks used as parameter. |
FILTER | yes | no | Filter used as parameter. |
SORT | yes | no | Sort used as parameter. |
CHART | yes | no | Chart used as parameter |
<PARAMETER name="textParam" value="param?tre de type texte"/> <PARAMETER name="classParam" idref="classId"/> <PARAMETER name="fieldMarks"> <F_MARKS set="true"/> </PARAMETER> <PARAMETER name="classParam" condition="APP_CLIENT" idref="classId1"/> <PARAMETER name="classParam" condition="APP_OPERATOR" idref="classId2"/> |