- Timestamp:
- 06/01/15 14:21:02 (10 years ago)
- Location:
- branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views/ThresholdTerminatorView.Designer.cs
r12408 r12410 25 25 26 26 namespace HeuristicLab.Termination.Views { 27 partial class ThresholdTerminatorView <T> where T : class, IItem, IComparable, IStringConvertibleValue, new(){27 partial class ThresholdTerminatorView { 28 28 /// <summary> 29 29 /// Required designer variable. -
branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views/ThresholdTerminatorView.cs
r12408 r12410 20 20 #endregion 21 21 22 using System;23 using HeuristicLab.Core;24 22 using HeuristicLab.Core.Views; 25 using HeuristicLab.Data;26 23 using HeuristicLab.MainForm; 27 24 … … 29 26 30 27 [View("ThresholdTerminator View")] 31 [Content(typeof( ThresholdTerminator<>), true)]32 public partial class ThresholdTerminatorView <T> : ItemView where T : class, IItem, IComparable, IStringConvertibleValue, new(){28 [Content(typeof(IThresholdTerminator), true)] 29 public partial class ThresholdTerminatorView : ItemView { 33 30 34 public new ThresholdTerminator<T>Content {35 get { return ( ThresholdTerminator<T>)base.Content; }31 public new IThresholdTerminator Content { 32 get { return (IThresholdTerminator)base.Content; } 36 33 set { base.Content = value; } 37 34 } … … 45 42 viewHost.Content = null; 46 43 if (Content != null) { 47 if (Content.ThresholdParameter. Value != null)48 viewHost.Content = Content.ThresholdParameter. Value;44 if (Content.ThresholdParameter.ActualValue != null) 45 viewHost.Content = Content.ThresholdParameter.ActualValue; 49 46 else 50 47 viewHost.Content = Content.ThresholdParameter;
Note: See TracChangeset
for help on using the changeset viewer.