Changeset 5294 for branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.ExperimentManager
- Timestamp:
- 01/14/11 00:43:03 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.ExperimentManager/3.3/HiveJob.cs
r5181 r5294 43 43 get { 44 44 if (jobDto.Id == Guid.Empty) { // not yet uploaded 45 return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Event;45 return HeuristicLab.Common.Resources.VSImageLibrary.Event; 46 46 } else { 47 if (jobDto.State == JobState.Offline) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePrepared;48 else if (jobDto.State == JobState.WaitForChildJobs) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePrepared;49 else if (jobDto.State == JobState.Calculating) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStarted;50 else if (jobDto.State == JobState.Aborted) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStopped;51 else if (jobDto.State == JobState.Failed) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Error;52 else if (jobDto.State == JobState.Finished) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStopped;53 else return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Event;47 if (jobDto.State == JobState.Offline) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared; 48 else if (jobDto.State == JobState.WaitForChildJobs) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared; 49 else if (jobDto.State == JobState.Calculating) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted; 50 else if (jobDto.State == JobState.Aborted) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped; 51 else if (jobDto.State == JobState.Failed) return HeuristicLab.Common.Resources.VSImageLibrary.Error; 52 else if (jobDto.State == JobState.Finished) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped; 53 else return HeuristicLab.Common.Resources.VSImageLibrary.Event; 54 54 } 55 55 }
Note: See TracChangeset
for help on using the changeset viewer.