Interface IGroup<I extends IAnyGroup>

    • Field Detail

      • DEFAULT

        static final IGroup<IAnyGroup> DEFAULT
        Constant for default attributes of this immutable component.
    • Method Detail

      • getWidgetClass

        default java.lang.String getWidgetClass()
        Returns the client widget class.

        Default: "zkex.grid.Group"

        Specified by:
        getWidgetClass in interface IComponent<I extends IAnyGroup>
      • getLabel

        @Nullable
        default java.lang.String getLabel()
        Returns the value of the ILabel it contains, or null if no such cell.
      • withLabel

        IGroup<I> withLabel​(@Nullable
                            java.lang.String label)
        Returns a copy of this immutable component with the specified label.

        Sets the value of the ILabel it contains.

        If it is not created, we automatically create it.

        Parameters:
        label - The label of the first child

        Default: null.

        Returns:
        A modified copy of the this object
      • isOpen

        default boolean isOpen()
        Returns whether this container is open.

        Default: true.

      • withOpen

        IGroup<I> withOpen​(boolean open)
        Returns a copy of this immutable component with the specified open.

        Sets whether this container is open.

        Parameters:
        open - Whether it's open.

        Default: true.

        Returns:
        A modified copy of the this object
      • of

        static <I extends IAnyGroupIGroup<I> of​(java.lang.String label)
        Returns the instance with the given label.
        Parameters:
        label - The label that the first cell holds.
      • of

        static <I extends IAnyGroupIGroup<I> of​(java.lang.Iterable<? extends I> children)
        Returns the instance with the given any group children.
        Parameters:
        children - The children belong to any group
        See Also:
        IAnyGroup
      • of

        static <I extends IAnyGroupIGroup<I> of​(I... children)
        Returns the instance with the given any group children.
        Parameters:
        children - The children belong to any group
        See Also:
        IAnyGroup
      • ofId

        static <I extends IAnyGroupIGroup<I> ofId​(java.lang.String id)
        Returns the instance with the given id.
        Parameters:
        id - The id to identify this component