Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/10 02:48:19 (14 years ago)
Author:
swagner
Message:

Fixed persistence exceptions by restoring the reference on HeuristicLab.Persistence in HeuristicLab.Collections (#977)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableSet.cs

    r3390 r3560  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
     26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2627
    2728namespace HeuristicLab.Collections {
     29  [StorableClass]
    2830  [Serializable]
    2931  public class ReadOnlyObservableSet<T> : IObservableSet<T> {
     32    [Storable]
    3033    protected IObservableSet<T> set;
    3134
     
    4649      RegisterEvents();
    4750    }
     51    [StorableConstructor]
     52    protected ReadOnlyObservableSet(bool deserializing) { }
    4853    #endregion
    4954
     
    125130
    126131    #region Events
     132    [StorableHook(HookType.AfterDeserialization)]
    127133    protected void RegisterEvents() {
    128134      set.ItemsAdded += new CollectionItemsChangedEventHandler<T>(set_ItemsAdded);
Note: See TracChangeset for help on using the changeset viewer.