- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Collections/3.3
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/BidirectionalDictionary.cs
r14185 r14927 24 24 using System.Collections; 25 25 using System.Collections.Generic; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Collections { 29 [Storable Class]29 [StorableType("8295ae53-5cfc-4902-a5dd-a44d37b9fcc6")] 30 30 [Serializable] 31 31 public class BidirectionalDictionary<TFirst, TSecond> : IEnumerable<KeyValuePair<TFirst, TSecond>> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/BidirectionalLookup.cs
r14185 r14927 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;25 using HeuristicLab.Persistence; 26 26 27 27 namespace HeuristicLab.Collections { 28 [Storable Class]28 [StorableType("5678ae40-181b-4920-a497-795b152648c4")] 29 29 [Serializable] 30 30 public class BidirectionalLookup<TFirst, TSecond> { … … 189 189 #endregion 190 190 191 [Storable Class]191 [StorableType("be5e048b-2a86-4266-a06d-2ae64bb65c00")] 192 192 private class StorableGrouping<TKey, TValue> : IGrouping<TKey, TValue> { 193 193 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableArray.cs
r14185 r14927 26 26 using System.Linq; 27 27 using HeuristicLab.Common; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 30 30 namespace HeuristicLab.Collections { 31 [Storable Class]31 [StorableType("a5adee08-dd7e-4a1c-a694-0d231d2e7a20")] 32 32 [Serializable] 33 33 public class ObservableArray<T> : IObservableArray<T> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableCollection.cs
r14185 r14927 20 20 #endregion 21 21 22 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;22 using HeuristicLab.Persistence; 23 23 using System; 24 24 using System.Collections; … … 28 28 29 29 namespace HeuristicLab.Collections { 30 [Storable Class]30 [StorableType("421fcb8c-41b0-47b3-9101-91db7876c186")] 31 31 [Serializable] 32 32 public class ObservableCollection<T> : IObservableCollection<T> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableDictionary.cs
r14185 r14927 25 25 using System.ComponentModel; 26 26 using System.Linq; 27 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;27 using HeuristicLab.Persistence; 28 28 29 29 namespace HeuristicLab.Collections { 30 [Storable Class]30 [StorableType("20753faa-5f2b-43c7-80b4-ccc208b8140b")] 31 31 [Serializable] 32 32 public class ObservableDictionary<TKey, TValue> : IObservableDictionary<TKey, TValue> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableKeyedCollection.cs
r14185 r14927 25 25 using System.ComponentModel; 26 26 using System.Linq; 27 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;27 using HeuristicLab.Persistence; 28 28 29 29 namespace HeuristicLab.Collections { 30 [Storable Class]30 [StorableType("615e54ff-d8d3-4360-ba85-6941833cc79a")] 31 31 [Serializable] 32 32 public abstract class ObservableKeyedCollection<TKey, TItem> : IObservableKeyedCollection<TKey, TItem> { … … 236 236 if (match == null) throw new ArgumentNullException(); 237 237 foreach (TItem item in dict.Values) 238 if (! 238 if (!match(item)) return false; 239 239 return true; 240 240 } -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableKeyedList.cs
r14185 r14927 25 25 using System.Collections.Generic; 26 26 using System.Linq; 27 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;27 using HeuristicLab.Persistence; 28 28 29 29 namespace HeuristicLab.Collections { 30 30 [Serializable] 31 [Storable Class]31 [StorableType("cf55ec4e-de0d-4230-9134-ed04e54f24dd")] 32 32 public abstract class ObservableKeyedList<TKey, TItem> : ObservableList<TItem>, IObservableKeyedList<TKey, TItem> { 33 33 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableList.cs
r14185 r14927 21 21 22 22 using HeuristicLab.Common; 23 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;23 using HeuristicLab.Persistence; 24 24 using System; 25 25 using System.Collections; … … 29 29 30 30 namespace HeuristicLab.Collections { 31 [Storable Class]31 [StorableType("0125ad8d-706c-4ba0-9689-57eae44544cd")] 32 32 [Serializable] 33 33 public class ObservableList<T> : IObservableList<T> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableSet.cs
r14185 r14927 25 25 using System.ComponentModel; 26 26 using System.Linq; 27 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;27 using HeuristicLab.Persistence; 28 28 29 29 namespace HeuristicLab.Collections { 30 [Storable Class]30 [StorableType("9cff8fe1-7ff5-4b55-96cd-e8f4c5169d75")] 31 31 [Serializable] 32 32 public class ObservableSet<T> : IObservableSet<T> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs
r14185 r14927 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Collections { 29 [Storable Class]29 [StorableType("2a66af94-ed89-4d97-bd41-33f8365b99cf")] 30 30 [Serializable] 31 31 public class ReadOnlyObservableArray<T> : IObservableArray<T> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableCollection.cs
r14185 r14927 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Collections { 29 [Storable Class]29 [StorableType("a8b79b27-3f40-4bbe-a59f-9c54c669f111")] 30 30 [Serializable] 31 31 public class ReadOnlyObservableCollection<T> : IObservableCollection<T> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableDictionary.cs
r14185 r14927 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Collections { 29 [Storable Class]29 [StorableType("6e8e8a30-e56e-4666-b551-5d9da2d86e37")] 30 30 [Serializable] 31 31 public class ReadOnlyObservableDictionary<TKey, TValue> : IObservableDictionary<TKey, TValue> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedCollection.cs
r14185 r14927 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Collections { 29 [Storable Class]29 [StorableType("d1e16c60-8c29-4e76-9dca-3e269ead513d")] 30 30 [Serializable] 31 31 public class ReadOnlyObservableKeyedCollection<TKey, TItem> : IObservableKeyedCollection<TKey, TItem> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedList.cs
r14185 r14927 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;24 using HeuristicLab.Persistence; 25 25 26 26 namespace HeuristicLab.Collections { 27 [Storable Class]27 [StorableType("1a654f1f-369a-49fd-a211-b60a2a54deec")] 28 28 [Serializable] 29 29 public class ReadOnlyObservableKeyedList<TKey, TItem> : ReadOnlyObservableList<TItem>, IObservableKeyedList<TKey, TItem> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs
r14185 r14927 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Collections { 29 [Storable Class]29 [StorableType("d7d6aa8c-13c6-4fee-9302-c3638b259701")] 30 30 [Serializable] 31 31 public class ReadOnlyObservableList<T> : IObservableList<T> { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableSet.cs
r14185 r14927 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Collections { 29 [Storable Class]29 [StorableType("e0c44ec9-f94f-4e99-a782-6df8ff579d7c")] 30 30 [Serializable] 31 31 public class ReadOnlyObservableSet<T> : IObservableSet<T> {
Note: See TracChangeset
for help on using the changeset viewer.