Changeset 14092 for branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Views/MOFrontScatterPlotView.cs
- Timestamp:
- 07/18/16 13:50:08 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Views/MOFrontScatterPlotView.cs
r14030 r14092 31 31 namespace HeuristicLab.Problems.MultiObjectiveTestFunctions { 32 32 [View("Scatter Plot")] 33 [Content(typeof( IMOFrontModel))]33 [Content(typeof(ScatterPlotContent))] 34 34 public partial class MOQualitiesScatterPlotView : ItemView { 35 35 private const string QUALITIES = "Qualities"; … … 41 41 int objectives = -1; 42 42 43 public new IMOFrontModelContent {44 get { return ( IMOFrontModel)base.Content; }43 public new ScatterPlotContent Content { 44 get { return (ScatterPlotContent)base.Content; } 45 45 set { base.Content = value; } 46 46 }
Note: See TracChangeset
for help on using the changeset viewer.