Changeset 2740 for trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 02/03/10 04:43:06 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IOperatorParameter.cs
r2715 r2740 27 27 namespace HeuristicLab.Core { 28 28 public interface IOperatorParameter : IParameter { 29 string ActualName { get; set; }30 29 IOperator Value { get; set; } 31 30 32 event EventHandler ActualNameChanged;33 31 event EventHandler ValueChanged; 34 32 } -
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IParameter.cs
r2687 r2740 29 29 public interface IParameter : INamedItem { 30 30 Type DataType { get; } 31 32 IItem GetValue(ExecutionContext context); 31 ExecutionContext ExecutionContext { get; set; } 33 32 } 34 33 }
Note: See TracChangeset
for help on using the changeset viewer.