Changeset 11522 for stable/HeuristicLab.Optimization/3.3/Interfaces
- Timestamp:
- 11/04/14 18:35:25 (10 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11344-11345,11419
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization/3.3/Interfaces/IRun.cs
r11170 r11522 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 22 using System.ComponentModel; 24 23 using System.Drawing; 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Core; 26 26 … … 29 29 /// Represents the parameters and results of an algorithm run. 30 30 /// </summary> 31 public interface IRun : INamedItem {31 public interface IRun : INamedItem, INotifyPropertyChanged { 32 32 IAlgorithm Algorithm { get; } 33 I Dictionary<string, IItem> Parameters { get; }34 I Dictionary<string, IItem> Results { get; }33 IObservableDictionary<string, IItem> Parameters { get; } 34 IObservableDictionary<string, IItem> Results { get; } 35 35 36 36 Color Color { get; set; } 37 37 bool Visible { get; set; } 38 event EventHandler Changed;39 38 } 40 39 }
Note: See TracChangeset
for help on using the changeset viewer.