Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/OKBItem.cs @ 4426

Last change on this file since 4426 was 4426, checked in by swagner, 14 years ago

Worked on OKB data model and services (#1174)

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.ComponentModel;
24using System.Drawing;
25using System.Runtime.Serialization;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28
29namespace HeuristicLab.Clients.OKB {
30  [Item("OKBItem", "Base class for all OKB items.")]
31  [DataContract(IsReference = true)]
32  public abstract class OKBItem : IOKBItem {
33    public virtual string ItemName {
34      get { return ItemAttribute.GetName(this.GetType()); }
35    }
36    public virtual string ItemDescription {
37      get { return ItemAttribute.GetDescription(this.GetType()); }
38    }
39    public Version ItemVersion {
40      get { return ItemAttribute.GetVersion(this.GetType()); }
41    }
42    public virtual Image ItemImage {
43      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
44    }
45
46    protected OKBItem() { }
47
48    public object Clone() {
49      return Clone(new Cloner());
50    }
51    public virtual IDeepCloneable Clone(Cloner cloner) {
52      OKBItem clone = (OKBItem)Activator.CreateInstance(this.GetType(), true);
53      cloner.RegisterClonedObject(this, clone);
54      return clone;
55    }
56
57    public override string ToString() {
58      return ItemName;
59    }
60
61    public virtual void Store() { }
62
63    public event PropertyChangedEventHandler PropertyChanged;
64    protected virtual void RaisePropertyChanged(string propertyName) {
65      PropertyChangedEventHandler handler = PropertyChanged;
66      if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
67    }
68    public event EventHandler ItemImageChanged;
69    protected virtual void OnItemImageChanged() {
70      EventHandler handler = ItemImageChanged;
71      if (handler != null) handler(this, EventArgs.Empty);
72    }
73    public event EventHandler ToStringChanged;
74    protected virtual void OnToStringChanged() {
75      EventHandler handler = ToStringChanged;
76      if (handler != null) handler(this, EventArgs.Empty);
77    }
78  }
79}
Note: See TracBrowser for help on using the repository browser.