Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/19 23:12:05 (5 years ago)
Author:
gkronber
Message:

#2520: removed usages of AllowOneWay

Location:
trunk/HeuristicLab.Analysis/3.3
Files:
4 edited

Legend:

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

    r16565 r16796  
    227227    internal DataRowHistogramAggregation? Aggregation { get; private set; }
    228228
    229     [Storable(Name = "Bins", AllowOneWay = true)]
     229    [Storable(OldName = "Bins")]
    230230    private int StorableBins { set { Bins = value; } }
    231     [Storable(Name = "ExactBins", AllowOneWay = true)]
     231    [Storable(OldName = "ExactBins")]
    232232    private bool StorableExactBins { set { ExactBins = value; } }
    233     [Storable(Name = "Aggregation", AllowOneWay = true)]
     233    [Storable(OldName = "Aggregation")]
    234234    private DataRowHistogramAggregation StorableAggregation { set { Aggregation = value; } }
    235235    #endregion
  • trunk/HeuristicLab.Analysis/3.3/DataVisualization/IndexedDataRow.cs

    r16565 r16796  
    6161    #region Backwards compatible code, remove with 3.4
    6262    // tuples are stored inefficiently
    63     [Storable(Name = "values", AllowOneWay = true)]
     63    [Storable(OldName = "values")]
    6464    private IEnumerable<Tuple<T, double>> StorableValues {
    6565      set { values = new ObservableList<Tuple<T, double>>(value); }
  • trunk/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs

    r16565 r16796  
    107107    #region Backwards compatible code, remove with 3.4
    108108    private ObservableList<PointF> points;
    109     [Storable(Name = "points", AllowOneWay = true)]
     109    [Storable(OldName = "points")]
    110110    private ObservableList<PointF> StorablePoints {
    111111      set { points = value; }
    112112    }
    113113    private string xAxisName;
    114     [Storable(Name = "xAxisName", AllowOneWay = true)]
     114    [Storable(OldName = "xAxisName")]
    115115    private string StorableXAxisName {
    116116      set { xAxisName = value; }
    117117    }
    118118    private string yAxisName;
    119     [Storable(Name = "yAxisName", AllowOneWay = true)]
     119    [Storable(OldName = "yAxisName")]
    120120    private string StorableYAxisName {
    121121      set { yAxisName = value; }
  • trunk/HeuristicLab.Analysis/3.3/PopulationSimilarityAnalysis/PopulationSimilarityAnalyzer.cs

    r16565 r16796  
    4444    #region Backwards compatible code, remove with 3.4
    4545    private ISolutionSimilarityCalculator oldSimilarityCalculator;
    46     [Storable(AllowOneWay = true, Name = "SimilarityCalculator")]
     46    [Storable(OldName = "SimilarityCalculator")]
    4747    [Obsolete]
    4848    private ISolutionSimilarityCalculator SimilarityCalculator { set { oldSimilarityCalculator = value; } }
Note: See TracChangeset for help on using the changeset viewer.