- Timestamp:
- 05/28/15 14:22:03 (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
r12405 r12408 22 22 using System; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Data; 24 25 25 26 namespace HeuristicLab.Termination.Views { 26 partial class ThresholdTerminatorView<T> where T : class, IItem, IComparable, new() {27 partial class ThresholdTerminatorView<T> where T : class, IItem, IComparable, IStringConvertibleValue, new() { 27 28 /// <summary> 28 29 /// Required designer variable. -
branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views/ThresholdTerminatorView.cs
r12405 r12408 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Core.Views; 25 using HeuristicLab.Data; 25 26 using HeuristicLab.MainForm; 26 27 … … 29 30 [View("ThresholdTerminator View")] 30 31 [Content(typeof(ThresholdTerminator<>), true)] 31 public partial class ThresholdTerminatorView<T> : ItemView where T : class, IItem, IComparable, new() {32 public partial class ThresholdTerminatorView<T> : ItemView where T : class, IItem, IComparable, IStringConvertibleValue, new() { 32 33 33 34 public new ThresholdTerminator<T> Content {
Note: See TracChangeset
for help on using the changeset viewer.