Interface CheckListItemInfo

    • Method Detail

      • getId

        @NotNull
        String getId()
        Returns unique item identifier.
        Returns:
        see above
      • getParentId

        @Nullable
        String getParentId()
        Returns parent's unique item identifier or null if there is no parent.
        Returns:
        see above
      • getName

        @NotNull
        String getName()
        Returns item name to be displayed in list.
        Returns:
        see above
      • getNote

        @Nullable
        String getNote()
        Returns some note to be displayed greyed near the item name or null to not display note.
        Returns:
        see above
      • isInitiallyChecked

        boolean isInitiallyChecked()
        Returns true if item is checked by default, false otherwise.
        Returns:
        see above
      • isEditable

        boolean isEditable()
        Returns true if item can be edited, false otherwise.
        Returns:
        see above