Changeset 17009 for trunk/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 06/14/19 13:40:49 (6 years ago)
- Location:
- trunk/HeuristicLab.Core/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Core/3.3/Interfaces/ICheckedItemCollection.cs
r16565 r17009 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Attic; 23 24 using HeuristicLab.Collections; 24 using HEAL.Attic;25 25 26 26 namespace HeuristicLab.Core { … … 31 31 bool ItemChecked(T item); 32 32 void SetItemCheckedState(T item, bool checkedState); 33 void SetItemCheckedState(IEnumerable<T> item, bool checkedState); 33 34 void Add(T item, bool checkedState); 34 35 } -
trunk/HeuristicLab.Core/3.3/Interfaces/ICheckedItemList.cs
r16565 r17009 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Attic; 23 24 using HeuristicLab.Collections; 24 using HEAL.Attic;25 25 26 26 namespace HeuristicLab.Core { … … 30 30 IEnumerable<IndexedItem<T>> CheckedItems { get; } 31 31 bool ItemChecked(T item); 32 bool ItemChecked(int itemIndex); 32 33 void SetItemCheckedState(T item, bool checkedState); 34 void SetItemCheckedState(IEnumerable<T> items, bool checkedState); 35 void SetItemCheckedState(int itemIndex, bool checkedState); 36 void SetItemCheckedState(IEnumerable<int> itemIndices, bool checkedState); 33 37 void Add(T item, bool checkedState); 34 38 void Insert(int index, T item, bool checkedState);
Note: See TracChangeset
for help on using the changeset viewer.