javax.faces.model

Class SelectItemGroup

  • All Implemented Interfaces:
    Serializable

    public class SelectItemGroup
    extends SelectItem

    SelectItemGroup is a subclass of SelectItem that identifies a set of options that will be made available as a subordinate "submenu" or "options list", depending upon the requirements of the UISelectMany or UISelectOne renderer that is actually used. In general, the value property of this instance will be ignored, and the label property of this instance will be used to label the submenu.

    Although it is feasible to incorporate SelectItemGroup instances in he selectItems property of this instance (thereby creating a data structure suitable for cascading submenus), some renderers may place restrictions on the level of nesting they support. For example, HTML based renderers that create an <select> element will typically render this instance as an <optgroup> element, but the HTML 4.01 Specification disallows nested option groups.

    See Also:
    Serialized Form
    • Constructor Detail

      • SelectItemGroup

        public SelectItemGroup()

        Construct a SelectItemGroup with no initialized property values.

      • SelectItemGroup

        public SelectItemGroup(String label)

        Construct a SelectItemGroup with the specified label and no associated selectItems. The value property will be set to a zero-length String, the description property will be set to null, and the disabled property will be set to false.

        Parameters:
        label - Label to be rendered for this group in the response
        Throws:
        NullPointerException - if label is false
      • SelectItemGroup

        public SelectItemGroup(String label,
                               String description,
                               boolean disabled,
                               SelectItem[] selectItems)

        Construct a SelectItemGroup with the specified properties. The value property will be set to a zero-length String.

        Parameters:
        label - Label to be rendered for this group in the response
        description - Description of this group, for use in tools
        disabled - Flag indicating that this group is disabled
        selectItems - Array of SelectItem describing the items available in this group
        Throws:
        NullPointerException - if label or selectItems is false
    • Method Detail

      • getSelectItems

        public SelectItem[] getSelectItems()

        Return the set of subordinate SelectItems for this group.

      • setSelectItems

        public void setSelectItems(SelectItem[] selectItems)

        Set the set of subordinate SelectItems for this group.

        Parameters:
        selectItems - The new set of subordinate items
        Throws:
        NullPointerException - if selectItems is null

Document created the 11/06/2005, last modified the 18/08/2025
Source of the printed document:https://www.gaudry.be/en/java-api-javaee-rf-javax/faces/model/selectitemgroup.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author of this site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.