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.Scripting/3.3/VariableStore.cs

    r12012 r13656  
    2525using HeuristicLab.Collections;
    2626using HeuristicLab.Common;
    27 using HeuristicLab.Common.Resources;
    2827using HeuristicLab.Core;
    2928using HeuristicLab.Persistence.Core;
     
    3635  public class VariableStore : ObservableDictionary<string, object>, IItem {
    3736    #region Properties
    38     public virtual string ItemName {
     37    public virtual string ItemName
     38    {
    3939      get { return ItemAttribute.GetName(GetType()); }
    4040    }
    41     public virtual string ItemDescription {
     41    public virtual string ItemDescription
     42    {
    4243      get { return ItemAttribute.GetDescription(GetType()); }
    4344    }
    44     public Version ItemVersion {
     45    public Version ItemVersion
     46    {
    4547      get { return ItemAttribute.GetVersion(GetType()); }
    4648    }
    47     public static Image StaticItemImage {
    48       get { return VSImageLibrary.Class; }
    49     }
    50     public virtual Image ItemImage {
     49
     50    public virtual Image ItemImage
     51    {
    5152      get { return ItemAttribute.GetImage(GetType()); }
    5253    }
     
    6566          try {
    6667            dict[kvp.Key] = CloneByPersistence(kvp.Value);
    67           } catch (PersistenceException pe) {
     68          }
     69          catch (PersistenceException pe) {
    6870            throw new NotSupportedException(string.Format(@"VariableStore: Variable ""{0}"" could not be cloned.", kvp.Key), pe);
    6971          }
Note: See TracChangeset for help on using the changeset viewer.