Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/16/21 15:27:07 (3 years ago)
Author:
dpiringe
Message:

#3026

  • added StorableTypeAttribute and StorableConstructorAttribute to all JsonItems
  • added a new JsonItem ListJsonItem + Interfaces IListJsonItem
  • renamed SymRegPythonProcessor to RunCollectionSRSolutionPythonFormatter
  • removed Interface IResultCollectionProcessor -> using the interface IRunCollectionModifier now (has aleady implementations)
  • renamed all related variables/fields/properties with a connection to ResultCollectionProcessor
  • added new implementations for IRunCollectionModifier
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JsonItems/UnsupportedJsonItem.cs

    r18043 r18055  
    33using System.Linq;
    44using Newtonsoft.Json;
     5using HEAL.Attic;
    56
    67namespace HeuristicLab.JsonInterface {
     8  [StorableType("0E2CA132-AA19-4FC7-B2FD-09572F2E0967")]
    79  public class UnsupportedJsonItem : JsonItem {
    810
     
    1416
    1517    protected override ValidationResult Validate() => ValidationResult.Successful();
     18
     19    public UnsupportedJsonItem() { }
     20
     21    [StorableConstructor]
     22    protected UnsupportedJsonItem(StorableConstructorFlag _) : base(_) { }
    1623  }
    1724}
Note: See TracChangeset for help on using the changeset viewer.