Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/16/15 10:36:09 (9 years ago)
Author:
gkronber
Message:

#2069 refactored grammar, symbols, and interpreter

Location:
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/CodeNodeView.Designer.cs

    r13013 r13017  
    112112      // splitContainer.Panel1
    113113      //
     114      this.splitContainer.Panel1.Controls.Add(this.prefixCode);
    114115      this.splitContainer.Panel1.Controls.Add(this.prefixLabel);
    115       this.splitContainer.Panel1.Controls.Add(this.prefixCode);
    116116      //
    117117      // splitContainer.Panel2
    118118      //
     119      this.splitContainer.Panel2.Controls.Add(this.suffixCode);
    119120      this.splitContainer.Panel2.Controls.Add(this.suffixLabel);
    120       this.splitContainer.Panel2.Controls.Add(this.suffixCode);
    121121      this.splitContainer.Size = new System.Drawing.Size(582, 261);
    122122      this.splitContainer.SplitterDistance = 130;
  • branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/CodeNodeView.cs

    r13013 r13017  
    2626
    2727namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode {
    28   [View("CodeNode View")]
    29   [Content(typeof(CodeNode), IsDefaultView = true)]
     28  [View("CodeSymbol View")]
     29  [Content(typeof(CodeSymbol), IsDefaultView = true)]
    3030  public partial class CodeNodeView : ItemView {
    31     public new CodeNode Content {
    32       get { return (CodeNode)base.Content; }
     31    public new CodeSymbol Content {
     32      get { return (CodeSymbol)base.Content; }
    3333      set { base.Content = value; }
    3434    }
Note: See TracChangeset for help on using the changeset viewer.