Changeset 2757 for trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 02/08/10 03:43:36 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IOperator.cs
r2653 r2757 44 44 /// <param name="scope">The scope where to execute the current instance.</param> 45 45 /// <returns>The next operation.</returns> 46 ExecutionContextCollectionExecute(ExecutionContext context);46 IExecutionContext Execute(ExecutionContext context); 47 47 /// <summary> 48 48 /// Aborts the current operator. -
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IParameter.cs
r2740 r2757 29 29 public interface IParameter : INamedItem { 30 30 Type DataType { get; } 31 IItem ActualValue { get; set; } 31 32 ExecutionContext ExecutionContext { get; set; } 32 33 }
Note: See TracChangeset
for help on using the changeset viewer.