Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/12 10:04:37 (12 years ago)
Author:
ascheibe
Message:

#1911 removed getters and added AllowOneWay attribute

File:
1 edited

Legend:

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

    r8404 r8405  
    105105    #region Backwards compatible code, remove with 3.4
    106106    private ObservableList<PointF> points;
    107     [Storable(Name = "points")]
     107    [Storable(Name = "points", AllowOneWay = true)]
    108108    private ObservableList<PointF> StorablePoints {
    109109      set { points = value; }
    110       get { return points; }
    111110    }
    112111    private string xAxisName;
    113     [Storable(Name = "xAxisName")]
     112    [Storable(Name = "xAxisName", AllowOneWay = true)]
    114113    private string StorableXAxisName {
    115114      set { xAxisName = value; }
    116       get { return xAxisName; }
    117115    }
    118116    private string yAxisName;
    119     [Storable(Name = "yAxisName")]
     117    [Storable(Name = "yAxisName", AllowOneWay = true)]
    120118    private string StorableYAxisName {
    121119      set { yAxisName = value; }
    122       get { return yAxisName; }
    123120    }
    124121    [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset for help on using the changeset viewer.