Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/13/16 10:51:56 (8 years ago)
Author:
abeham
Message:

#2431: Refactored ResultsParameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.Optimization/3.3/Results/IResultParameter.cs

    r12764 r14058  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525namespace HeuristicLab.Optimization {
    2626  public interface IResultParameter : ILookupParameter {
    27     string ResultName { get; set; }
    28     event EventHandler ResultNameChanged;
     27    string ResultCollectionName { get; set; }
     28    event EventHandler ResultCollectionNameChanged;
    2929  }
    3030
    31   public interface IResultParameter<T> : ILookupParameter<ResultCollection>, IResultParameter where T : class, IItem, new() {
     31  public interface IResultParameter<T> : ILookupParameter<T>, IResultParameter where T : class, IItem {
    3232    T DefaultValue { get; set; }
    33     T ResultValue { get; set; }
     33    event EventHandler DefaultValueChanged;
    3434  }
    3535}
Note: See TracChangeset for help on using the changeset viewer.