Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/28/10 17:48:10 (14 years ago)
Author:
cneumuel
Message:

HiveExperiment is now able to send IOptimizers of an Experiment and receive the calculated result (#1115)

Location:
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HeuristicLab.Hive.Experiment.Views-3.3.csproj

    r4116 r4119  
    3939    <PlatformTarget>AnyCPU</PlatformTarget>
    4040    <OutputPath>bin\Debug\</OutputPath>
     41    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    4142  </PropertyGroup>
    4243  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
     
    4647  <PropertyGroup>
    4748    <StartupObject />
     49  </PropertyGroup>
     50  <PropertyGroup>
     51    <SignAssembly>true</SignAssembly>
     52  </PropertyGroup>
     53  <PropertyGroup>
     54    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    4855  </PropertyGroup>
    4956  <ItemGroup>
     
    109116  </ItemGroup>
    110117  <ItemGroup>
     118    <None Include="HeuristicLab.snk" />
    111119    <None Include="Properties\AssemblyInfo.frame" />
    112120  </ItemGroup>
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.cs

    r4116 r4119  
    7575      base.OnContentChanged();
    7676      if (Content == null) {
    77         executionTimeTextBox.Text = "-";
     77        executionTimeTextBox.Text = string.Empty;
    7878      } else {
    7979        executionTimeTextBox.Text = Content.ExecutionTime.ToString();
     80        resourceIdsTextBox.Text = Content.ResourceIds;
     81        serverUrlTextBox.Text = Content.ServerUrl;
     82        experimentNamedItemView.Content = Content.Experiment;
    8083      }
    8184    }
     
    8487      base.SetEnabledStateOfControls();
    8588      executionTimeTextBox.Enabled = Content != null;
     89      if (Content != null) {
     90        openExperimentButton.Enabled = Content.Experiment != null;
     91        experimentNamedItemView.Locked = Content.Experiment == null;
     92      }
    8693      SetEnabledStateOfExecutableButtons();
    8794    }
     
    94101    private void Content_ExperimentChanged(object sender, EventArgs e) {
    95102      experimentNamedItemView.Content = Content.Experiment;
     103      if (Content.Experiment != null) {
     104        Content.Prepare();
     105      }
    96106      SetEnabledStateOfExecutableButtons();
    97107    }
     
    179189        stopButton.Enabled = (Content.ExecutionState == ExecutionState.Started) || (Content.ExecutionState == ExecutionState.Paused);
    180190        resetButton.Enabled = Content.ExecutionState != ExecutionState.Started;
    181         openExperimentButton.Enabled = Content.Experiment != null;
    182         experimentNamedItemView.Locked = Content.Experiment == null;
    183191      }
    184192    }
     
    200208
    201209    private void resourceIdsTextBox_Validated(object sender, EventArgs e) {
    202       Content.ResourceIds = resourceIdsLabel.Text;
     210      Content.ResourceIds = resourceIdsTextBox.Text;
    203211    }
    204212
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/Properties/AssemblyInfo.cs

    r4116 r4119  
    5555// You can specify all the values or you can default the Revision and Build Numbers
    5656// by using the '*' as shown below:
    57 [assembly: AssemblyVersion("3.3.0.4111")]
    58 [assembly: AssemblyFileVersion("3.3.0.4111")]
    59 [assembly: AssemblyBuildDate("2010/07/27 18:32:02")]
     57[assembly: AssemblyVersion("3.3.0.4116")]
     58[assembly: AssemblyFileVersion("3.3.0.4116")]
     59[assembly: AssemblyBuildDate("2010/07/28 17:42:56")]
Note: See TracChangeset for help on using the changeset viewer.