- Timestamp:
- 04/20/10 03:00:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Collections/ReadOnlyItemList.cs
r3390 r3431 49 49 } 50 50 51 public bool ReadOnlyView {52 get { return true; }53 set { }54 }55 56 51 public ReadOnlyItemList() : base(new ItemList<T>()) { } 57 52 public ReadOnlyItemList(IItemList<T> list) : base(list) { } … … 89 84 if (handler != null) handler(this, EventArgs.Empty); 90 85 } 91 event EventHandler IContent.ReadOnlyViewChanged {92 add { }93 remove { }94 }95 86 } 96 87 }
Note: See TracChangeset
for help on using the changeset viewer.