- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Collections/3.3
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/INotifyObservableArrayItemsChanged.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 22 23 23 24 namespace HeuristicLab.Collections { 25 [StorableType("23d5d519-a6f5-45bf-bb0c-5022e64b46b3")] 24 26 public interface INotifyObservableArrayItemsChanged<T> { 25 27 event CollectionItemsChangedEventHandler<IndexedItem<T>> ItemsReplaced; -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/INotifyObservableCollectionItemsChanged.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 22 23 23 24 namespace HeuristicLab.Collections { 25 [StorableType("238c7acc-fdb3-4183-ac9c-92559d9c54cd")] 24 26 public interface INotifyObservableCollectionItemsChanged<T> { 25 27 event CollectionItemsChangedEventHandler<T> ItemsAdded; -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/INotifyObservableDictionaryItemsChanged.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("b152e5ef-557c-4485-91c7-b803282e7e8f")] 25 27 public interface INotifyObservableDictionaryItemsChanged<TKey, TValue> : INotifyObservableCollectionItemsChanged<KeyValuePair<TKey, TValue>> { 26 28 event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsReplaced; -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/INotifyObservableKeyedCollectionItemsChanged.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Collections { 24 [StorableType("6cc465b8-e56e-47d1-ae79-a86592f5e1ae")] 23 25 public interface INotifyObservableKeyedCollectionItemsChanged<TKey, TItem> : INotifyObservableCollectionItemsChanged<TItem> { 24 26 event CollectionItemsChangedEventHandler<TItem> ItemsReplaced; -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/INotifyObservableListItemsChanged.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 22 23 23 24 namespace HeuristicLab.Collections { 25 [StorableType("1d6e3a50-47e8-4b1a-8508-3404e4067d23")] 24 26 public interface INotifyObservableListItemsChanged<T> : INotifyObservableCollectionItemsChanged<T> { 25 27 new event CollectionItemsChangedEventHandler<IndexedItem<T>> ItemsAdded; -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableArray.cs
r14185 r14929 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Collections { 27 [StorableType("2582353a-9592-4594-abea-79e1b3efffda")] 26 28 public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged { 27 29 int Length { get; } -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableCollection.cs
r14185 r14929 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Collections { 27 [StorableType("d9ba46a6-04ff-412d-ac50-9124821114e3")] 26 28 public interface IObservableCollection<T> : ICollection<T>, INotifyObservableCollectionItemsChanged<T>, INotifyPropertyChanged { } 27 29 } -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableDictionary.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("74269fc2-6b23-4335-9c98-44f70dc10f93")] 25 27 public interface IObservableDictionary<TKey, TValue> : IDictionary<TKey, TValue>, IObservableCollection<KeyValuePair<TKey, TValue>>, INotifyObservableDictionaryItemsChanged<TKey, TValue> { } 26 28 } -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableKeyedCollection.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Collections { 24 [StorableType("1ee7b4f3-8ad9-43e8-9a40-c11029e3d012")] 23 25 public interface IObservableKeyedCollection<TKey, TItem> : IObservableCollection<TItem>, INotifyObservableKeyedCollectionItemsChanged<TKey, TItem> { 24 26 TItem this[TKey key] { get; } -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableKeyedList.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 3 4 /* HeuristicLab … … 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("74c67a5e-d45e-44d9-ac54-13d2bc9db0e4")] 25 27 public interface IObservableKeyedList<TKey, TItem> : IObservableKeyedCollection<TKey, TItem>, IObservableList<TItem> { 26 28 } -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableList.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("672c4118-b252-47c1-b650-1bb4e2cb5ae9")] 25 27 public interface IObservableList<T> : IList<T>, IObservableCollection<T>, INotifyObservableListItemsChanged<T> { 26 28 void Reverse(); -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableSet.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("9566d8ae-5189-4d1a-89f1-2703270ff8a1")] 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.