Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/18/11 10:55:20 (13 years ago)
Author:
mkommend
Message:

#1418: Adapted views to new symbolic expression tree encoding.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/GraphicalSymbolicExpressionTreeView.cs

    r5473 r5513  
    2727namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
    2828  [View("Graphical SymbolicExpressionTree View")]
    29   [Content(typeof(SymbolicExpressionTree), true)]
     29  [Content(typeof(ISymbolicExpressionTree), true)]
    3030  public partial class GraphicalSymbolicExpressionTreeView : ItemView {
    31     public new SymbolicExpressionTree Content {
    32       get { return (SymbolicExpressionTree)base.Content; }
     31    public new ISymbolicExpressionTree Content {
     32      get { return (ISymbolicExpressionTree)base.Content; }
    3333      set { base.Content = value; }
    3434    }
Note: See TracChangeset for help on using the changeset viewer.