Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Core/NetworkItem.cs @ 13135

Last change on this file since 13135 was 13135, checked in by jkarder, 8 years ago

#2205: worked on optimization networks

  • refactored network visualization
File size: 2.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Collections.Generic;
23using System.Drawing;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Core.Networks {
29  [Item("NetworkItem", "Abstract base class for items of a network.")]
30  [StorableClass]
31  public abstract class NetworkItem : NamedItem, INetworkItem {
32    public static new Image StaticItemImage {
33      get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; }
34    }
35
36    private INetworkItem parent;
37    public INetworkItem Parent {
38      get { return parent; }
39      protected set {
40        if (value != parent) {
41          parent = value;
42        }
43      }
44    }
45    public virtual IEnumerable<INetworkItem> Children {
46      get { return Enumerable.Empty<INetworkItem>(); }
47    }
48
49    [Storable]
50    public IVisualProperties VisualProperties { get; set; }
51
52    [StorableConstructor]
53    protected NetworkItem(bool deserializing) : base(deserializing) { }
54    protected NetworkItem(NetworkItem original, Cloner cloner) : base(original, cloner) {
55      VisualProperties = cloner.Clone(original.VisualProperties);
56    }
57    protected NetworkItem() : base("NetworkItem") { }
58    protected NetworkItem(string name) : base(name) { }
59    protected NetworkItem(string name, string description) : base(name, description) { }
60  }
61}
Note: See TracBrowser for help on using the repository browser.