- Timestamp:
- 03/07/16 10:18:05 (9 years ago)
- Location:
- branches/WebJobManager
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Core/3.3/Executable.cs
r12012 r13656 29 29 [StorableClass] 30 30 public abstract class Executable : Item, IExecutable { 31 public static new Image StaticItemImage { 32 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; } 31 public static new Image StaticItemImage 32 { 33 get { return new Bitmap(25, 25); } 33 34 } 34 public override Image ItemImage { 35 get { 35 public override Image ItemImage 36 { 37 get 38 { 36 39 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared; 37 40 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted; … … 44 47 [Storable] 45 48 private ExecutionState executionState; 46 public ExecutionState ExecutionState { 49 public ExecutionState ExecutionState 50 { 47 51 get { return executionState; } 48 private set { 52 private set 53 { 49 54 if (executionState != value) { 50 55 executionState = value; … … 57 62 [Storable] 58 63 private TimeSpan executionTime; 59 public TimeSpan ExecutionTime { 64 public TimeSpan ExecutionTime 65 { 60 66 get { return executionTime; } 61 protected set { 67 protected set 68 { 62 69 executionTime = value; 63 70 OnExecutionTimeChanged();
Note: See TracChangeset
for help on using the changeset viewer.