- Timestamp:
- 01/04/12 16:45:02 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure
- Property svn:mergeinfo changed
/trunk/sources merged: 7195-7201,7209,7214,7216-7230,7233-7239,7241,7243-7252,7254,7256-7261,7265-7266
- Property svn:mergeinfo changed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/CheckedItemCollection.cs
r5809 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/CheckedItemList.cs
r5809 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ConstraintCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ItemArray.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Collections; 27 27 using HeuristicLab.Common; 28 using HeuristicLab.Common.Resources;29 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 29 … … 42 41 get { return ItemAttribute.GetVersion(this.GetType()); } 43 42 } 43 public static Image StaticItemImage { 44 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 45 } 44 46 public virtual Image ItemImage { 45 get { return VSImageLibrary.Class; }47 get { return ItemAttribute.GetImage(this.GetType()); } 46 48 } 47 49 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ItemCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Collections; 27 27 using HeuristicLab.Common; 28 using HeuristicLab.Common.Resources;29 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 29 … … 42 41 get { return ItemAttribute.GetVersion(this.GetType()); } 43 42 } 43 public static Image StaticItemImage { 44 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 45 } 44 46 public virtual Image ItemImage { 45 get { return VSImageLibrary.Class; }47 get { return ItemAttribute.GetImage(this.GetType()); } 46 48 } 47 49 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ItemDictionary.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Collections; 26 26 using HeuristicLab.Common; 27 using HeuristicLab.Common.Resources;28 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 28 … … 44 43 get { return ItemAttribute.GetVersion(this.GetType()); } 45 44 } 45 public static Image StaticItemImage { 46 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 47 } 46 48 public virtual Image ItemImage { 47 get { return VSImageLibrary.Class; }49 get { return ItemAttribute.GetImage(this.GetType()); } 48 50 } 49 51 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ItemList.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Collections; 27 27 using HeuristicLab.Common; 28 using HeuristicLab.Common.Resources;29 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 29 … … 42 41 get { return ItemAttribute.GetVersion(this.GetType()); } 43 42 } 43 public static Image StaticItemImage { 44 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 45 } 44 46 public virtual Image ItemImage { 45 get { return VSImageLibrary.Class; }47 get { return ItemAttribute.GetImage(this.GetType()); } 46 48 } 47 49 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ItemSet.cs
r6525 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Collections; 27 27 using HeuristicLab.Common; 28 using HeuristicLab.Common.Resources;29 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 29 … … 42 41 get { return ItemAttribute.GetVersion(this.GetType()); } 43 42 } 43 public static Image StaticItemImage { 44 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 45 } 44 46 public virtual Image ItemImage { 45 get { return VSImageLibrary.Class; }47 get { return ItemAttribute.GetImage(this.GetType()); } 46 48 } 47 49 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/KeyedItemCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 40 40 get { return ItemAttribute.GetVersion(this.GetType()); } 41 41 } 42 public static Image StaticItemImage { 43 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 44 } 42 45 public virtual Image ItemImage { 43 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; }46 get { return ItemAttribute.GetImage(this.GetType()); } 44 47 } 45 48 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/NamedItemCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/OperationCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/OperatorCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/OperatorList.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/OperatorSet.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ParameterCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyCheckedItemCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyCheckedItemList.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyItemArray.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HeuristicLab.Common.Resources;27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 27 … … 40 39 get { return ItemAttribute.GetVersion(this.GetType()); } 41 40 } 41 public static Image StaticItemImage { 42 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 43 } 42 44 public virtual Image ItemImage { 43 get { return VSImageLibrary.Class; }45 get { return ItemAttribute.GetImage(this.GetType()); } 44 46 } 45 47 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyItemCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HeuristicLab.Common.Resources;27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 27 … … 40 39 get { return ItemAttribute.GetVersion(this.GetType()); } 41 40 } 41 public static Image StaticItemImage { 42 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 43 } 42 44 public virtual Image ItemImage { 43 get { return VSImageLibrary.Class; }45 get { return ItemAttribute.GetImage(this.GetType()); } 44 46 } 45 47 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyItemDictionary.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HeuristicLab.Common.Resources;27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 27 … … 43 42 get { return ItemAttribute.GetVersion(this.GetType()); } 44 43 } 44 public static Image StaticItemImage { 45 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 46 } 45 47 public virtual Image ItemImage { 46 get { return VSImageLibrary.Class; }48 get { return ItemAttribute.GetImage(this.GetType()); } 47 49 } 48 50 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyItemList.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HeuristicLab.Common.Resources;27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 27 … … 40 39 get { return ItemAttribute.GetVersion(this.GetType()); } 41 40 } 41 public static Image StaticItemImage { 42 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 43 } 42 44 public virtual Image ItemImage { 43 get { return VSImageLibrary.Class; }45 get { return ItemAttribute.GetImage(this.GetType()); } 44 46 } 45 47 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyItemSet.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HeuristicLab.Common.Resources;27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 27 … … 40 39 get { return ItemAttribute.GetVersion(this.GetType()); } 41 40 } 41 public static Image StaticItemImage { 42 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 43 } 42 44 public virtual Image ItemImage { 43 get { return VSImageLibrary.Class; }45 get { return ItemAttribute.GetImage(this.GetType()); } 44 46 } 45 47 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ReadOnlyKeyedItemCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HeuristicLab.Common.Resources;27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 27 … … 40 39 get { return ItemAttribute.GetVersion(this.GetType()); } 41 40 } 41 public static Image StaticItemImage { 42 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 43 } 42 44 public virtual Image ItemImage { 43 get { return VSImageLibrary.Class; }45 get { return ItemAttribute.GetImage(this.GetType()); } 44 46 } 45 47 -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ScopeList.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/ValueParameterCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Core/3.3/Collections/VariableCollection.cs
r5445 r7270 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab.
Note: See TracChangeset
for help on using the changeset viewer.