Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/17/10 05:24:03 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • corrected several bugs in order to get SGA working
Location:
trunk/sources/HeuristicLab.Parameters.Views/3.3
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/HeuristicLab.Parameters.Views-3.3.csproj

    r2803 r2818  
    105105      <Name>HeuristicLab.Common.Resources-3.2</Name>
    106106    </ProjectReference>
     107    <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
     108      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
     109      <Name>HeuristicLab.Common-3.2</Name>
     110    </ProjectReference>
    107111    <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj">
    108112      <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project>
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/HeuristicLabParametersViewsPlugin.cs.frame

    r2790 r2818  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    2522using HeuristicLab.PluginInfrastructure;
    2623
     
    3128  [Plugin("HeuristicLab.Parameters.Views", "3.3.0.$WCREV$")]
    3229  [PluginFile("HeuristicLab.Parameters.Views-3.3.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.Common", "3.2")]
    3331  [PluginDependency("HeuristicLab.Common.Resources", "3.2")]
    3432  [PluginDependency("HeuristicLab.Core", "3.3")]
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/LookupParameterView.cs

    r2790 r2818  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.ComponentModel;
    25 using System.Drawing;
    26 using System.Data;
    27 using System.Text;
    28 using System.Windows.Forms;
    2923using HeuristicLab.Core;
    3024using HeuristicLab.Core.Views;
     
    3630  /// </summary>
    3731  [Content(typeof(LookupParameter<>), true)]
    38   [Content(typeof(SubScopesLookupParameter<>), true)]
    3932  [Content(typeof(ILookupParameter<>), false)]
    4033  public partial class LookupParameterView<T> : ParameterView where T : class, IItem {
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ParameterView.cs

    r2790 r2818  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.ComponentModel;
    25 using System.Drawing;
    26 using System.Data;
    27 using System.Text;
    28 using System.Windows.Forms;
     22using HeuristicLab.Common;
    2923using HeuristicLab.Core;
    3024using HeuristicLab.Core.Views;
     
    7367      } else {
    7468        Caption = Content.Name + " (" + Content.GetType().Name + ")";
    75         dataTypeTextBox.Text = Content.DataType.Name;
     69        dataTypeTextBox.Text = Content.DataType.GetPrettyName();
    7670        dataTypeTextBox.Enabled = true;
    7771      }
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.cs

    r2790 r2818  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.ComponentModel;
    25 using System.Drawing;
    26 using System.Data;
    27 using System.Text;
    2823using System.Windows.Forms;
    2924using HeuristicLab.Core;
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.cs

    r2790 r2818  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.ComponentModel;
    25 using System.Drawing;
    26 using System.Data;
    27 using System.Text;
    2823using System.Windows.Forms;
    2924using HeuristicLab.Core;
Note: See TracChangeset for help on using the changeset viewer.