- Timestamp:
- 06/01/17 11:29:49 (7 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Collections/3.3
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/BidirectionalDictionary.cs
r14927 r15018 36 36 37 37 [StorableConstructor] 38 protected BidirectionalDictionary( booldeserializing) : base() { }38 protected BidirectionalDictionary(StorableConstructorFlag deserializing) : base() { } 39 39 public BidirectionalDictionary() { 40 40 firstToSecond = new Dictionary<TFirst, TSecond>(); -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/BidirectionalLookup.cs
r14927 r15018 35 35 36 36 [StorableConstructor] 37 protected BidirectionalLookup( booldeserializing) : base() { }37 protected BidirectionalLookup(StorableConstructorFlag deserializing) : base() { } 38 38 public BidirectionalLookup() { 39 39 firstToSecond = new Dictionary<TFirst, HashSet<TSecond>>(); -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableArray.cs
r14927 r15018 75 75 } 76 76 [StorableConstructor] 77 protected ObservableArray( booldeserializing) { }77 protected ObservableArray(StorableConstructorFlag deserializing) { } 78 78 #endregion 79 79 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableCollection.cs
r14927 r15018 63 63 } 64 64 [StorableConstructor] 65 protected ObservableCollection( booldeserializing) { }65 protected ObservableCollection(StorableConstructorFlag deserializing) { } 66 66 #endregion 67 67 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableDictionary.cs
r14927 r15018 88 88 } 89 89 [StorableConstructor] 90 protected ObservableDictionary( booldeserializing) { }90 protected ObservableDictionary(StorableConstructorFlag deserializing) { } 91 91 #endregion 92 92 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableKeyedCollection.cs
r14927 r15018 78 78 } 79 79 [StorableConstructor] 80 protected ObservableKeyedCollection( booldeserializing) { }80 protected ObservableKeyedCollection(StorableConstructorFlag deserializing) { } 81 81 #endregion 82 82 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableKeyedList.cs
r14927 r15018 64 64 } 65 65 [StorableConstructor] 66 protected ObservableKeyedList( booldeserializing) : base(deserializing) { }66 protected ObservableKeyedList(StorableConstructorFlag deserializing) : base(deserializing) { } 67 67 #endregion 68 68 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableList.cs
r14927 r15018 78 78 } 79 79 [StorableConstructor] 80 protected ObservableList( booldeserializing) { }80 protected ObservableList(StorableConstructorFlag deserializing) { } 81 81 #endregion 82 82 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableSet.cs
r14927 r15018 60 60 } 61 61 [StorableConstructor] 62 protected ObservableSet( booldeserializing) { }62 protected ObservableSet(StorableConstructorFlag deserializing) { } 63 63 #endregion 64 64 -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs
r14927 r15018 61 61 } 62 62 [StorableConstructor] 63 protected ReadOnlyObservableArray( booldeserializing) { }63 protected ReadOnlyObservableArray(StorableConstructorFlag deserializing) { } 64 64 65 65 [StorableHook(HookType.AfterDeserialization)] -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableCollection.cs
r14927 r15018 50 50 } 51 51 [StorableConstructor] 52 protected ReadOnlyObservableCollection( booldeserializing) { }52 protected ReadOnlyObservableCollection(StorableConstructorFlag deserializing) { } 53 53 54 54 [StorableHook(HookType.AfterDeserialization)] -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableDictionary.cs
r14927 r15018 64 64 } 65 65 [StorableConstructor] 66 protected ReadOnlyObservableDictionary( booldeserializing) { }66 protected ReadOnlyObservableDictionary(StorableConstructorFlag deserializing) { } 67 67 68 68 [StorableHook(HookType.AfterDeserialization)] -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedCollection.cs
r14927 r15018 56 56 } 57 57 [StorableConstructor] 58 protected ReadOnlyObservableKeyedCollection( booldeserializing) { }58 protected ReadOnlyObservableKeyedCollection(StorableConstructorFlag deserializing) { } 59 59 60 60 [StorableHook(HookType.AfterDeserialization)] -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedList.cs
r14927 r15018 47 47 } 48 48 [StorableConstructor] 49 protected ReadOnlyObservableKeyedList( booldeserializing) { }49 protected ReadOnlyObservableKeyedList(StorableConstructorFlag deserializing) { } 50 50 [StorableHook(HookType.AfterDeserialization)] 51 51 private void AfterDeserialization() { -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs
r14927 r15018 58 58 } 59 59 [StorableConstructor] 60 protected ReadOnlyObservableList( booldeserializing) { }60 protected ReadOnlyObservableList(StorableConstructorFlag deserializing) { } 61 61 62 62 [StorableHook(HookType.AfterDeserialization)] -
branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableSet.cs
r14927 r15018 50 50 } 51 51 [StorableConstructor] 52 protected ReadOnlyObservableSet( booldeserializing) { }52 protected ReadOnlyObservableSet(StorableConstructorFlag deserializing) { } 53 53 54 54 [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset
for help on using the changeset viewer.