Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

Location:
branches/PersistenceReintegration/HeuristicLab.Collections/3.3
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/BidirectionalDictionary.cs

    r14185 r14927  
    2424using System.Collections;
    2525using System.Collections.Generic;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Collections {
    29   [StorableClass]
     29  [StorableType("8295ae53-5cfc-4902-a5dd-a44d37b9fcc6")]
    3030  [Serializable]
    3131  public class BidirectionalDictionary<TFirst, TSecond> : IEnumerable<KeyValuePair<TFirst, TSecond>> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/BidirectionalLookup.cs

    r14185 r14927  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Persistence;
    2626
    2727namespace HeuristicLab.Collections {
    28   [StorableClass]
     28  [StorableType("5678ae40-181b-4920-a497-795b152648c4")]
    2929  [Serializable]
    3030  public class BidirectionalLookup<TFirst, TSecond> {
     
    189189    #endregion
    190190
    191     [StorableClass]
     191    [StorableType("be5e048b-2a86-4266-a06d-2ae64bb65c00")]
    192192    private class StorableGrouping<TKey, TValue> : IGrouping<TKey, TValue> {
    193193
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableArray.cs

    r14185 r14927  
    2626using System.Linq;
    2727using HeuristicLab.Common;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.Persistence;
    2929
    3030namespace HeuristicLab.Collections {
    31   [StorableClass]
     31  [StorableType("a5adee08-dd7e-4a1c-a694-0d231d2e7a20")]
    3232  [Serializable]
    3333  public class ObservableArray<T> : IObservableArray<T> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableCollection.cs

    r14185 r14927  
    2020#endregion
    2121
    22 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     22using HeuristicLab.Persistence;
    2323using System;
    2424using System.Collections;
     
    2828
    2929namespace HeuristicLab.Collections {
    30   [StorableClass]
     30  [StorableType("421fcb8c-41b0-47b3-9101-91db7876c186")]
    3131  [Serializable]
    3232  public class ObservableCollection<T> : IObservableCollection<T> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableDictionary.cs

    r14185 r14927  
    2525using System.ComponentModel;
    2626using System.Linq;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HeuristicLab.Persistence;
    2828
    2929namespace HeuristicLab.Collections {
    30   [StorableClass]
     30  [StorableType("20753faa-5f2b-43c7-80b4-ccc208b8140b")]
    3131  [Serializable]
    3232  public class ObservableDictionary<TKey, TValue> : IObservableDictionary<TKey, TValue> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableKeyedCollection.cs

    r14185 r14927  
    2525using System.ComponentModel;
    2626using System.Linq;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HeuristicLab.Persistence;
    2828
    2929namespace HeuristicLab.Collections {
    30   [StorableClass]
     30  [StorableType("615e54ff-d8d3-4360-ba85-6941833cc79a")]
    3131  [Serializable]
    3232  public abstract class ObservableKeyedCollection<TKey, TItem> : IObservableKeyedCollection<TKey, TItem> {
     
    236236      if (match == null) throw new ArgumentNullException();
    237237      foreach (TItem item in dict.Values)
    238         if (! match(item)) return false;
     238        if (!match(item)) return false;
    239239      return true;
    240240    }
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableKeyedList.cs

    r14185 r14927  
    2525using System.Collections.Generic;
    2626using System.Linq;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HeuristicLab.Persistence;
    2828
    2929namespace HeuristicLab.Collections {
    3030  [Serializable]
    31   [StorableClass]
     31  [StorableType("cf55ec4e-de0d-4230-9134-ed04e54f24dd")]
    3232  public abstract class ObservableKeyedList<TKey, TItem> : ObservableList<TItem>, IObservableKeyedList<TKey, TItem> {
    3333
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableList.cs

    r14185 r14927  
    2121
    2222using HeuristicLab.Common;
    23 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     23using HeuristicLab.Persistence;
    2424using System;
    2525using System.Collections;
     
    2929
    3030namespace HeuristicLab.Collections {
    31   [StorableClass]
     31  [StorableType("0125ad8d-706c-4ba0-9689-57eae44544cd")]
    3232  [Serializable]
    3333  public class ObservableList<T> : IObservableList<T> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ObservableSet.cs

    r14185 r14927  
    2525using System.ComponentModel;
    2626using System.Linq;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HeuristicLab.Persistence;
    2828
    2929namespace HeuristicLab.Collections {
    30   [StorableClass]
     30  [StorableType("9cff8fe1-7ff5-4b55-96cd-e8f4c5169d75")]
    3131  [Serializable]
    3232  public class ObservableSet<T> : IObservableSet<T> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs

    r14185 r14927  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Collections {
    29   [StorableClass]
     29  [StorableType("2a66af94-ed89-4d97-bd41-33f8365b99cf")]
    3030  [Serializable]
    3131  public class ReadOnlyObservableArray<T> : IObservableArray<T> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableCollection.cs

    r14185 r14927  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Collections {
    29   [StorableClass]
     29  [StorableType("a8b79b27-3f40-4bbe-a59f-9c54c669f111")]
    3030  [Serializable]
    3131  public class ReadOnlyObservableCollection<T> : IObservableCollection<T> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableDictionary.cs

    r14185 r14927  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Collections {
    29   [StorableClass]
     29  [StorableType("6e8e8a30-e56e-4666-b551-5d9da2d86e37")]
    3030  [Serializable]
    3131  public class ReadOnlyObservableDictionary<TKey, TValue> : IObservableDictionary<TKey, TValue> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedCollection.cs

    r14185 r14927  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Collections {
    29   [StorableClass]
     29  [StorableType("d1e16c60-8c29-4e76-9dca-3e269ead513d")]
    3030  [Serializable]
    3131  public class ReadOnlyObservableKeyedCollection<TKey, TItem> : IObservableKeyedCollection<TKey, TItem> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedList.cs

    r14185 r14927  
    2222using System;
    2323using System.Collections.Generic;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HeuristicLab.Persistence;
    2525
    2626namespace HeuristicLab.Collections {
    27   [StorableClass]
     27  [StorableType("1a654f1f-369a-49fd-a211-b60a2a54deec")]
    2828  [Serializable]
    2929  public class ReadOnlyObservableKeyedList<TKey, TItem> : ReadOnlyObservableList<TItem>, IObservableKeyedList<TKey, TItem> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs

    r14185 r14927  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Collections {
    29   [StorableClass]
     29  [StorableType("d7d6aa8c-13c6-4fee-9302-c3638b259701")]
    3030  [Serializable]
    3131  public class ReadOnlyObservableList<T> : IObservableList<T> {
  • branches/PersistenceReintegration/HeuristicLab.Collections/3.3/ReadOnlyObservableSet.cs

    r14185 r14927  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Collections {
    29   [StorableClass]
     29  [StorableType("e0c44ec9-f94f-4e99-a782-6df8ff579d7c")]
    3030  [Serializable]
    3131  public class ReadOnlyObservableSet<T> : IObservableSet<T> {
Note: See TracChangeset for help on using the changeset viewer.