Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/10 18:28:50 (15 years ago)
Author:
epitzer
Message:

Make StorableClass attribute compulsory for StorableSerializer to work, add named property StorableClassType to choose between Empty and MarkedOnly, later other options will be added. (#548)

Location:
trunk/sources/HeuristicLab.Analysis/3.3
Files:
2 edited

Legend:

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

    r2924 r2994  
    3131  /// </summary>
    3232  [Item("BestAverageWorstQualityCalculator", "An operator which calculates the best, average and worst solution quality of the current population.")]
    33   [EmptyStorableClass]
     33  [StorableClass(StorableClassType.Empty)]
    3434  [Creatable("Test")]
    3535  public sealed class BestAverageWorstQualityCalculator : SingleSuccessorOperator {
  • trunk/sources/HeuristicLab.Analysis/3.3/DataTableValuesCollector.cs

    r2908 r2994  
    3333  [Item("DataTableValuesCollector", "An operator which collects the actual values of parameters and adds them to a table of data values.")]
    3434  [Creatable("Test")]
    35   [EmptyStorableClass]
     35  [StorableClass(StorableClassType.Empty)]
    3636  public class DataTableValuesCollector : ValuesCollector {
    3737    public ValueLookupParameter<DataTable> DataTableParameter {
Note: See TracChangeset for help on using the changeset viewer.