Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/11 15:05:48 (13 years ago)
Author:
cneumuel
Message:

#1233

  • implemented pause, stop for single jobs
  • introduced Command property for jobs (to distinguish between state and command (abort vs. aborted))
  • improved behaviour of ItemTreeView (double click opens new window, selected item stays marked)
  • fixed bugs in StateLogGanttChartListView and HiveJobView
  • fixed cloning of client-side dtos
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/LightweightJob.cs

    r5718 r5779  
    4242      this.StateLog = new List<StateLog>(job.StateLog);
    4343      this.State = job.State;
     44      this.Command = job.Command;
    4445    }
    4546
    46     protected LightweightJob(LightweightJob original, Cloner cloner) {
     47    protected LightweightJob(LightweightJob original, Cloner cloner)
     48      : base(original, cloner) {
    4749      this.ExecutionTime = original.ExecutionTime;
    4850      this.ParentJobId = original.ParentJobId;
    4951      this.StateLog = new List<StateLog>(original.StateLog);
    5052      this.State = original.State;
    51       this.Id = original.Id;
     53      this.Command = original.Command;
    5254    }
    5355    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.