Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/19 13:14:50 (5 years ago)
Author:
chaider
Message:

#2971 Renaming and moving files:

Renamed:

NamedIntervals => IntervalCollection
ParsedConstraint => ProblemDataConstraint
NamedIntervalsView => IntervalCollectionView

Folder Parser => Interval

Moved:

IntervalCollectionView from Regression/IntervalCollectionView ==> ./IntervalCollectionView
Interval, IntervalCollection from /Implementation => /Implementation/Interval

Location:
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj

    r16885 r16896  
    338338      <DependentUpon>ProblemDataView.cs</DependentUpon>
    339339    </Compile>
    340     <Compile Include="Regression\NamedIntervalsView.cs">
    341       <SubType>UserControl</SubType>
    342     </Compile>
    343     <Compile Include="Regression\NamedIntervalsView.Designer.cs">
    344       <DependentUpon>NamedIntervalsView.cs</DependentUpon>
     340    <Compile Include="IntervalCollectionView.cs">
     341      <SubType>UserControl</SubType>
     342    </Compile>
     343    <Compile Include="IntervalCollectionView.Designer.cs">
     344      <DependentUpon>IntervalCollectionView.cs</DependentUpon>
    345345    </Compile>
    346346    <Compile Include="Regression\ConfidenceRegressionSolutionEstimatedValuesView.cs">
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/ParsedConstraintView.cs

    r16870 r16896  
    2828namespace HeuristicLab.Problems.DataAnalysis.Views {
    2929  [View("ParsedConstraint View")]
    30   [Content(typeof(ParsedConstraint), true)]
     30  [Content(typeof(ProblemDataConstraint), true)]
    3131  public partial class ParsedConstraintView : AsynchronousContentView {
    3232    private CheckedItemList<IntervalConstraint> intervalConstraints;
    33     public new ParsedConstraint Content {
    34       get => (ParsedConstraint)base.Content;
     33    public new ProblemDataConstraint Content {
     34      get => (ProblemDataConstraint)base.Content;
    3535      set => base.Content = value;
    3636    }
Note: See TracChangeset for help on using the changeset viewer.