Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/19 14:12:15 (5 years ago)
Author:
abeham
Message:

#3010: merged to stable (17009, 17126)

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Core

  • stable/HeuristicLab.Core/3.3/Collections/ReadOnlyCheckedItemList.cs

    r17097 r17147  
    2222using System;
    2323using System.Collections.Generic;
     24using HEAL.Attic;
    2425using HeuristicLab.Collections;
    2526using HeuristicLab.Common;
    26 using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Core {
     
    7272    }
    7373
     74    public bool ItemChecked(int itemIndex) {
     75      return CheckedItemList.ItemChecked(itemIndex);
     76    }
     77
    7478    public void SetItemCheckedState(T item, bool checkedState) {
    7579      CheckedItemList.SetItemCheckedState(item, checkedState);
     80    }
     81
     82    public void SetItemCheckedState(IEnumerable<T> items, bool checkedState) {
     83      CheckedItemList.SetItemCheckedState(items, checkedState);
     84    }
     85
     86    public void SetItemCheckedState(int itemIndex, bool checkedState) {
     87      CheckedItemList.SetItemCheckedState(itemIndex, checkedState);
     88    }
     89
     90    public void SetItemCheckedState(IEnumerable<int> itemIndices, bool checkedState) {
     91      CheckedItemList.SetItemCheckedState(itemIndices, checkedState);
    7692    }
    7793
Note: See TracChangeset for help on using the changeset viewer.