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/ReadOnlyObservableList.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 ReadOnlyObservableList<T> : IObservableList<T> {
     32    [Storable]
    3033    protected IObservableList<T> list;
    3134
     
    5457      RegisterEvents();
    5558    }
     59    [StorableConstructor]
     60    protected ReadOnlyObservableList(bool deserializing) { }
    5661    #endregion
    5762
     
    103108
    104109    #region Events
     110    [StorableHook(HookType.AfterDeserialization)]
    105111    protected void RegisterEvents() {
    106112      list.ItemsAdded += new CollectionItemsChangedEventHandler<IndexedItem<T>>(list_ItemsAdded);
Note: See TracChangeset for help on using the changeset viewer.