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.Operators/3.3/Operator.cs

    r12012 r13656  
    3535  [StorableClass]
    3636  public abstract partial class Operator : ParameterizedNamedItem, IOperator, IStatefulItem {
    37     public static new Image StaticItemImage {
    38       get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
     37    public static new Image StaticItemImage
     38    {
     39      get { return new Bitmap(25, 25); }
    3940    }
    40     public override Image ItemImage {
    41       get {
     41    public override Image ItemImage
     42    {
     43      get
     44      {
    4245        if (Breakpoint) return HeuristicLab.Common.Resources.VSImageLibrary.BreakpointActive;
    4346        else return base.ItemImage;
    4447      }
    4548    }
    46     public override bool CanChangeDescription {
     49    public override bool CanChangeDescription
     50    {
    4751      get { return false; }
    4852    }
    4953
    5054    private Lazy<ThreadLocal<IExecutionContext>> executionContexts;
    51     protected IExecutionContext ExecutionContext {
     55    protected IExecutionContext ExecutionContext
     56    {
    5257      get { return executionContexts.Value.Value; }
    53       private set {
     58      private set
     59      {
    5460        if (value != executionContexts.Value.Value) {
    5561          executionContexts.Value.Value = value;
     
    5864    }
    5965    private CancellationToken cancellationToken;
    60     protected CancellationToken CancellationToken {
     66    protected CancellationToken CancellationToken
     67    {
    6168      get { return cancellationToken; }
    6269    }
     
    6471    [Storable]
    6572    private bool breakpoint;
    66     public bool Breakpoint {
     73    public bool Breakpoint
     74    {
    6775      get { return breakpoint; }
    68       set {
     76      set
     77      {
    6978        if (value != breakpoint) {
    7079          breakpoint = value;
Note: See TracChangeset for help on using the changeset viewer.