- Timestamp:
- 12/30/18 09:16:51 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableArray.cs
r16453 r16472 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Collections { 27 [StorableType("ebdc610c-2f22-42c7-a72e-8a4ec682712f")] 26 28 public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged { 27 29 int Length { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableCollection.cs
r16453 r16472 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Collections { 27 [StorableType("289d81e9-a167-416c-aaa8-c40aa1ea96f9")] 26 28 public interface IObservableCollection<T> : ICollection<T>, INotifyObservableCollectionItemsChanged<T>, INotifyPropertyChanged { } 27 29 } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableDictionary.cs
r16453 r16472 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("70d9ec0d-7a88-424a-9f59-6cc659f57369")] 25 27 public interface IObservableDictionary<TKey, TValue> : IDictionary<TKey, TValue>, IObservableCollection<KeyValuePair<TKey, TValue>>, INotifyObservableDictionaryItemsChanged<TKey, TValue> { } 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableList.cs
r16453 r16472 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("00be7255-b5c6-4b5d-82d3-6ed258d6a0c9")] 25 27 public interface IObservableList<T> : IList<T>, IObservableCollection<T>, INotifyObservableListItemsChanged<T> { 26 28 void Reverse(); -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableSet.cs
r16453 r16472 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("2c42f57a-3bdb-45b9-a548-d4cb9cc71250")] 25 27 public interface IObservableSet<T> : IObservableCollection<T> { 26 28 bool IsProperSubsetOf(IEnumerable<T> other);
Note: See TracChangeset
for help on using the changeset viewer.