Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8404


Ignore:
Timestamp:
08/02/12 23:33:29 (12 years ago)
Author:
ascheibe
Message:

#1911 added missing getters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs

    r8280 r8404  
    108108    private ObservableList<PointF> StorablePoints {
    109109      set { points = value; }
     110      get { return points; }
    110111    }
    111112    private string xAxisName;
     
    113114    private string StorableXAxisName {
    114115      set { xAxisName = value; }
     116      get { return xAxisName; }
    115117    }
    116118    private string yAxisName;
     
    118120    private string StorableYAxisName {
    119121      set { yAxisName = value; }
     122      get { return yAxisName; }
    120123    }
    121124    [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset for help on using the changeset viewer.