Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:13 (9 years ago)
Author:
ascheibe
Message:

#2520 added guids to storable classes

Location:
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/HiveTasks/HiveTask.cs

    r12621 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3535
    3636  [Item("Hive Task", "Represents a hive task.")]
    37   [StorableClass]
     37  [StorableClass("967DC1A1-7B0C-4D8B-AF9F-710B1FD676DF")]
    3838  public class HiveTask : NamedItem, IItemTree<HiveTask>, IDisposable {
    3939    protected static object locker = new object();
     
    541541
    542542  [Item("Hive Task", "Represents a hive task.")]
    543   [StorableClass]
     543  [StorableClass("967DC1A1-7B0C-4D8B-AF9F-710B1FD676DF")]
    544544  public class HiveTask<T> : HiveTask where T : ItemTask {
    545545
  • branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/StateLogList.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2626
    2727namespace HeuristicLab.Clients.Hive {
    28   [StorableClass]
     28  [StorableClass("ED082FB8-76ED-4A77-97B6-ACB7D566435F")]
    2929  public class StateLogList : ItemList<StateLog> {
    3030
  • branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/StateLogListList.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2626
    2727namespace HeuristicLab.Clients.Hive {
    28   [StorableClass]
     28  [StorableClass("2EFC5B92-9976-42CE-812E-8155183D182A")]
    2929  public class StateLogListList : ItemList<StateLogList> {
    3030
  • branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/Tasks/EngineTask.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2727
    2828namespace HeuristicLab.Clients.Hive {
    29   [StorableClass]
     29  [StorableClass("EBCB0A8C-B00C-43DD-A38E-E4E12168ABA2")]
    3030  public class EngineTask : ItemTask {
    3131    public override HiveTask CreateHiveTask() {
  • branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/Tasks/ItemTask.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3131namespace HeuristicLab.Clients.Hive {
    3232  [Item("Item Task", "Represents a executable hive task which contains a HeuristicLab Item.")]
    33   [StorableClass]
     33  [StorableClass("1E1F34FE-F580-4968-8C3F-918A22FDC8DC")]
    3434  public abstract class ItemTask : NamedItem, ITask {
    3535    public virtual HiveTask CreateHiveTask() {
  • branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/Tasks/OptimizerTask.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2828namespace HeuristicLab.Clients.Hive.Jobs {
    2929  [Item("Optimizer Task", "Represents Task which executes a IOptimizer object.")]
    30   [StorableClass]
     30  [StorableClass("52EFD5D9-936F-42C0-8ACE-548AC06A0855")]
    3131  public class OptimizerTask : ItemTask {
    3232    public override HiveTask CreateHiveTask() {
Note: See TracChangeset for help on using the changeset viewer.