Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/16 10:18:05 (8 years ago)
Author:
ascheibe
Message:

#2582 created branch for Hive Web Job Manager

Location:
branches/WebJobManager
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Clients.Hive/3.3/Tasks/EngineTask.cs

    r12012 r13656  
    2121
    2222using System;
    23 using System.Drawing;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
     
    3635    [Storable]
    3736    protected IOperation initialOperation;
    38     public IOperation InitialOperation {
     37    public IOperation InitialOperation
     38    {
    3939      get { return initialOperation; }
    4040      set { initialOperation = value; }
    4141    }
    4242
    43     public new IEngine Item {
     43    public new IEngine Item
     44    {
    4445      get { return (IEngine)base.Item; }
    4546      set { base.Item = value; }
    4647    }
    4748
    48     public override TimeSpan ExecutionTime {
     49    public override TimeSpan ExecutionTime
     50    {
    4951      get { return Item.ExecutionTime; }
    5052    }
    5153
    52     public override ExecutionState ExecutionState {
     54    public override ExecutionState ExecutionState
     55    {
    5356      get { return Item.ExecutionState; }
    5457    }
     
    7376    #endregion
    7477
    75     public override bool IsParallelizable {
     78    public override bool IsParallelizable
     79    {
    7680      get { return false; }
    7781    }
     
    136140    }
    137141
    138     public override bool CanChangeDescription {
     142    public override bool CanChangeDescription
     143    {
    139144      get { return false; }
    140145    }
    141146
    142     public override bool CanChangeName {
     147    public override bool CanChangeName
     148    {
    143149      get { return false; }
    144150    }
    145151
    146     public override string Description {
     152    public override string Description
     153    {
    147154      get { return string.Empty; }
    148155      set { throw new NotSupportedException(); }
    149156    }
    150157
    151     public override string Name {
     158    public override string Name
     159    {
    152160      get { return Item != null ? Item.ToString() : "Engine Task"; }
    153161      set { throw new NotSupportedException(); }
    154162    }
    155163
    156     public static new Image StaticItemImage {
    157       get { return HeuristicLab.Common.Resources.VSImageLibrary.Operator; }
    158     }
    159164
    160     public override string ItemName {
     165
     166    public override string ItemName
     167    {
    161168      get { return "Engine Task"; }
    162169    }
Note: See TracChangeset for help on using the changeset viewer.