Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/26/15 16:15:54 (9 years ago)
Author:
pfleck
Message:

#2027 Renamed TerminationCriterion to Terminator.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views/ThresholdTerminatorView.cs

    r12401 r12402  
    2727namespace HeuristicLab.Termination.Views {
    2828
    29   [View("ThresholdTerminationCriterion View")]
    30   [Content(typeof(ThresholdTerminationCriterion<>), true)]
    31   public partial class ThresholdTerminationCriterionView<T> : ItemView where T : class, IItem, IComparable {
     29  [View("ThresholdTerminator View")]
     30  [Content(typeof(ThresholdTerminator<>), true)]
     31  public partial class ThresholdTerminatorView<T> : ItemView where T : class, IItem, IComparable {
    3232
    33     public new ThresholdTerminationCriterion<T> Content {
    34       get { return (ThresholdTerminationCriterion<T>)base.Content; }
     33    public new ThresholdTerminator<T> Content {
     34      get { return (ThresholdTerminator<T>)base.Content; }
    3535      set { base.Content = value; }
    3636    }
    3737
    38     public ThresholdTerminationCriterionView() {
     38    public ThresholdTerminatorView() {
    3939      InitializeComponent();
    4040    }
Note: See TracChangeset for help on using the changeset viewer.