- Timestamp:
- 07/22/19 12:09:38 (5 years ago)
- Location:
- branches/2971_named_intervals
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/IntervalCollectionView.Designer.cs
r16930 r17145 73 73 this.groupBox1.TabIndex = 1; 74 74 this.groupBox1.TabStop = false; 75 this.groupBox1.Text = "Interval Boundaries";75 this.groupBox1.Text = "Intervals"; 76 76 // 77 77 // NamedIntervalsView -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/IntervalCollectionView.cs
r16927 r17145 28 28 namespace HeuristicLab.Problems.DataAnalysis.Views { 29 29 30 [View(" NamedIntervalsView")]30 [View("IntervalCollection View")] 31 31 [Content(typeof(IntervalCollection), true)] 32 32 public sealed partial class IntervalCollectionView : AsynchronousContentView { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Interval/IntervalCollection.cs
r16960 r17145 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;24 using HEAL.Attic; 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Collections;28 using HEAL.Attic;29 27 30 28 namespace HeuristicLab.Problems.DataAnalysis { 31 [Item(" NamedIntervals", "Represents variables with their interval ranges.")]29 [Item("IntervalCollection", "Represents variables with their interval ranges.")] 32 30 [StorableType("230B4E4B-41E5-4D33-9BC3-E2DAADDCA5AE")] 33 31 public class IntervalCollection : Item { … … 63 61 } 64 62 } 63 public override IDeepCloneable Clone(Cloner cloner) { 64 return new IntervalCollection(this, cloner); 65 } 65 66 66 67 public IntervalCollection(IDictionary<string, Interval> variableIntervals) { … … 89 90 return VariableIntervals; 90 91 } 91 92 public override IDeepCloneable Clone(Cloner cloner) {93 return new IntervalCollection(this, cloner);94 }95 92 } 96 93 }
Note: See TracChangeset
for help on using the changeset viewer.