group

A <group> element instructs the user interface Agent to consider all content of the <group> element as related.

Remarks

The first element child of the group is the group leader and must be either a Boolean or an Enum type value (or a <gcv-ref> that refers to a Boolean or an Enum). The other members of the group should be displayed as subordinate to the group leader. If the group leader is a<gcv-ref>, the definition it refers to must be a Boolean or an Enum.

Attributes

Attribute

Possible Values

Default Value

definition

Boolean or Enum

The <group> can contain any number of <definition> elements. If the first <group> child element is a <definition> element, the type attribute value must be a Boolean or an Enum.

 

gcv-ref

The <group> can contain any number of <gcv-ref> elements. If the first <group> child is <gcv-ref>, the referenced GCV must be a Boolean or an Enum.

 

subordinates

Any number of <subordinates> elements can appear as the children of a <group> element. However, a <subordinates> element cannot be the first child of a <group> element.

 

header

Any number of <header> elements can appear as the children of a <group> element. However, a <header> element cannot be the first child of a <group> element.

 

group

Any number of <group> elements can appear as the children of a <group> element. However, a <group> element cannot be the first child of a <group> element.

#REQUIRED

For example:

   <header display-name="TCP parameters"/>
     <group>
           <definition
             type="boolean"
             name="server-connect"
             display-name="Connect to remote server"
                            >
              <value>true</value>
            </definition>
           <definition
    type="string"
    name="host-name"
    display-name="Host name or IP address of server"
     >
          <value>192.168.0.1</value>
          </definition>
           <definition
             type="integer"
             name="port"
             display-name="HTTP port number of server"
             range-lo="1"
             range-hi="65535"
           >
          <value>80</value>
        </definition>
    </group>

Parent Elements

See definition.