Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/11 15:05:48 (13 years ago)
Author:
cneumuel
Message:

#1233

  • implemented pause, stop for single jobs
  • introduced Command property for jobs (to distinguish between state and command (abort vs. aborted))
  • improved behaviour of ItemTreeView (double click opens new window, selected item stays marked)
  • fixed bugs in StateLogGanttChartListView and HiveJobView
  • fixed cloning of client-side dtos
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/Plugin.cs

    r5614 r5779  
    2020#endregion
    2121
    22 using System;
    23 using System.Runtime.Serialization;
    2422using HeuristicLab.Common;
    2523
    2624namespace HeuristicLab.Clients.Hive {
    27  
     25
    2826  public partial class Plugin : IDeepCloneable, IContent {
    2927
    3028    public Plugin() { }
    3129
    32     protected Plugin(Plugin original, Cloner cloner) {
     30    protected Plugin(Plugin original, Cloner cloner)
     31      : base(original, cloner) {
    3332      this.Version = original.Version;
    3433      this.UserId = original.UserId;
    3534      this.DateCreated = original.DateCreated;
    3635      this.IsLocal = original.IsLocal;
    37       this.Name = original.Name;
    38       this.Description = original.Description;
    39       this.Id = original.Id;
    4036    }
    4137
Note: See TracChangeset for help on using the changeset viewer.