Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/Symbols/Event Methods/Events/EmptyEvent.cs @ 10355

Last change on this file since 10355 was 9630, checked in by ascheibe, 12 years ago

#2069 fixed cloning constructors and formatting

File size: 1.2 KB
RevLine 
[9609]1using HeuristicLab.Common;
2using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
3using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
[9612]5namespace HeuristicLab.Problems.Robocode {
6  [StorableClass]
7  public class EmptyEvent : CodeNode {
8    public override int MinimumArity { get { return 0; } }
9    public override int MaximumArity { get { return 0; } }
[9609]10
[9612]11    [Storable]
12    public override string Prefix { get; set; }
[9609]13
[9612]14    [Storable]
15    public override string Suffix { get; set; }
[9609]16
[9612]17    [StorableConstructor]
18    private EmptyEvent(bool deserializing) : base(deserializing) { }
19    private EmptyEvent(EmptyEvent original, Cloner cloner)
20      : base(original, cloner) {
21    }
[9609]22
[9612]23    public EmptyEvent()
24      : base("EmptyEvent", "This is a placeholder for an empty event.") {
25      this.Prefix = "";
26      this.Suffix = "";
27    }
[9609]28
[9612]29    public override IDeepCloneable Clone(Cloner cloner) {
30      return new EmptyEvent(this, cloner);
31    }
[9609]32
[9612]33    public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
34      return "";
[9609]35    }
[9612]36  }
[9609]37}
Note: See TracBrowser for help on using the repository browser.