Package org.zkoss.zul

Class AbstractGroupsModel<D,​H,​F,​E>

    • Field Detail

      • _selection

        protected transient java.util.Set<E> _selection
        The current selection.
    • Constructor Detail

      • AbstractGroupsModel

        protected AbstractGroupsModel()
    • Method Detail

      • getSelection

        public java.util.Set<E> getSelection()
        Returns the current selection. It is readonly. Don't modify it directly
        Specified by:
        getSelection in interface Selectable<D>
        Returns:
        the current selection.
      • setSelection

        public void setSelection​(java.util.Collection<? extends E> selection)
        Replace the current selection with the given set.

        If this represents a change to the current selection then notify each ListDataListener, including UI.

        Specified by:
        setSelection in interface Selectable<D>
      • isSelected

        public boolean isSelected​(java.lang.Object obj)
        Returns whether an object is selected.
        Specified by:
        isSelected in interface Selectable<D>
      • isSelectionEmpty

        public boolean isSelectionEmpty()
        Returns true if the selection is currently empty.
        Specified by:
        isSelectionEmpty in interface Selectable<D>
      • addToSelection

        public boolean addToSelection​(E obj)
        Add the specified object into selection.

        If this represents a change to the current selection then notify each ListDataListener, including UI.

        Specified by:
        addToSelection in interface Selectable<D>
        Parameters:
        obj - the object to be as selection.
        Returns:
        true if it is added successfully; false if obj is not part of the data, or was already selected.
      • removeFromSelection

        public boolean removeFromSelection​(java.lang.Object obj)
        Remove the specified object from selection.

        If this represents a change to the current selection then notify each ListDataListener, including UI.

        Specified by:
        removeFromSelection in interface Selectable<D>
        Parameters:
        obj - the object to be remove from selection.
        Returns:
        whether it is removed successfully
      • clearSelection

        public void clearSelection()
        Change the selection to the empty set.

        If this represents a change to the current selection then notify each ListDataListener, including UI.

        Specified by:
        clearSelection in interface Selectable<D>
      • fireSelectionEvent

        protected void fireSelectionEvent​(E e)
        Selectable's implementor use only.

        Fires a selection event for component to scroll into view. The override subclass must put the index0 of fireEvent(int, int, int, int) as the view index to scroll. By default, the value -1 is assumed which means no scroll into view.

        The method is invoked when both methods are invoked. addToSelection(Object) and setSelection(Collection).

        Parameters:
        e - selected object.
      • removeAllSelection

        protected void removeAllSelection​(java.util.Collection<?> c)
        Removes the selection of the given collection.
      • retainAllSelection

        protected void retainAllSelection​(java.util.Collection<?> c)
        Removes the selection that doesn't belong to the given collection.
      • setMultiple

        public void setMultiple​(boolean multiple)
        Sets the selection mode to be multiple.
        Specified by:
        setMultiple in interface Selectable<D>
      • newEmptySelection

        protected java.util.Set<E> newEmptySelection()
        Instantiation an empty set of the section. It is used to initialize _selection.

        By default, it instantiates an instance of LinkedHashMap. The deriving class might override to instantiate a different class.

      • writeSelection

        protected void writeSelection​(java.io.ObjectOutputStream s)
                               throws java.io.IOException
        Writes _selection.

        Default: write it directly. Override it if E is not serializable.

        Throws:
        java.io.IOException
      • readSelection

        protected void readSelection​(java.io.ObjectInputStream s)
                              throws java.io.IOException,
                                     java.lang.ClassNotFoundException
        Reads back _selection.

        Default: write it directly. Override it if E is not serializable.

        Throws:
        java.io.IOException
        java.lang.ClassNotFoundException
      • clone

        public java.lang.Object clone()
        Overrides:
        clone in class java.lang.Object