Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/09/11 14:12:10 (13 years ago)
Author:
cneumuel
Message:

#1233

  • removed Job-dto objects from slave core (since it stores outdated objects)
  • added command textbox to HiveJobView
  • improved the way the control buttons behave in HiveJobView
  • improved job control (pause and stop is also possible when job is not currently calculating)
  • improved gantt chart view (last state log entry is also displayed)
  • unified code for downloading jobs between experiment manager and hive engine
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/HiveJobView.cs

    r6033 r6168  
    124124        if (Content != null && Content.Job != null) {
    125125          this.stateTextBox.Text = Content.Job.State.ToString();
     126          this.commandTextBox.Text = Content.Job.Command.ToString();
    126127          this.executionTimeTextBox.Text = Content.Job.ExecutionTime.ToString();
    127128          this.dateFinishedTextBox.Text = Content.Job.DateFinished.ToString();
     
    137138        } else {
    138139          this.stateTextBox.Text = string.Empty;
     140          this.commandTextBox.Text = string.Empty;
    139141          this.executionTimeTextBox.Text = string.Empty;
    140142          this.dateCalculatedText.Text = string.Empty;
     
    152154      this.jobIdTextBox.ReadOnly = true;
    153155      this.stateTextBox.ReadOnly = true;
     156      this.commandTextBox.ReadOnly = true;
    154157      this.executionTimeTextBox.ReadOnly = true;
    155158      this.dateCreatedTextBox.ReadOnly = true;
Note: See TracChangeset for help on using the changeset viewer.