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.Core/3.3/Scope.cs

    r12012 r13656  
    3232  [StorableClass]
    3333  public sealed class Scope : NamedItem, IScope {
    34     public static new Image StaticItemImage {
    35       get { return HeuristicLab.Common.Resources.VSImageLibrary.OrgChart; }
     34    public static new Image StaticItemImage
     35    {
     36      get { return new Bitmap(25, 25); }
    3637    }
    3738
    3839    [Storable]
    3940    private IScope parent;
    40     public IScope Parent {
     41    public IScope Parent
     42    {
    4143      get { return parent; }
    42       set {
     44      set
     45      {
    4346        if (parent != value) {
    4447          parent = value;
     
    4952    [Storable]
    5053    private VariableCollection variables;
    51     public VariableCollection Variables {
     54    public VariableCollection Variables
     55    {
    5256      get { return variables; }
    5357    }
     
    5559    [Storable]
    5660    private ScopeList subScopes;
    57     public ScopeList SubScopes {
     61    public ScopeList SubScopes
     62    {
    5863      get { return subScopes; }
    5964    }
Note: See TracChangeset for help on using the changeset viewer.