Interface CheckListModel<T>

    • Method Detail

      • isCheckedIndex

        boolean isCheckedIndex​(int index)
        Returns the check state of the element at specified position
        Parameters:
        index - element index
        Returns:
        true if element at specified position is checked
        Throws:
        IndexOutOfBoundsException - if index is out of range
      • setCheckedIndex

        void setCheckedIndex​(int index,
                             boolean value)
        Sets the check state of the element at specified position
        Parameters:
        index - element index
        value -
        Throws:
        IndexOutOfBoundsException - if index is out of range
      • getCheckedItems

        Collection<T> getCheckedItems()
        Returns a collections of checked items
        Returns:
      • setCheckedItems

        void setCheckedItems​(Collection<T> items)
        Sets checked items
        Parameters:
        items -
      • getOriginalSize

        int getOriginalSize()
        Returns the number of items before the filter was applied
        Returns: