Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/10 04:53:58 (14 years ago)
Author:
swagner
Message:

Adaptions according to the new IContent interface (#969).

File:
1 edited

Legend:

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

    r3317 r3368  
    2323using System.Collections.Generic;
    2424using System.ComponentModel;
     25using HeuristicLab.Common;
    2526
    2627namespace HeuristicLab.Collections {
    27   public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged {
    28     bool ReadOnlyView { get; set; }
     28  public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged, IContent {
    2929    int Length { get; }
    30 
    31     event EventHandler ReadOnlyViewChanged;
    3230  }
    3331}
Note: See TracChangeset for help on using the changeset viewer.