Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/27/20 15:53:26 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • added error output for failed runner initialization
  • reorganised some final view models
  • TargetedJsonItemType (in JsonItemVMBase) now automatically returns the type of the defined JsonItem
  • code cleanup
  • refactored RegressionProblemDataConverter
  • added lots of comments
  • added new view for StringArrayJsonItem
  • added new UI component for concrete restricted items and used it in JsonItemConcreteItemArrayControl and JsonItemValidValuesControl
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IJsonItemConverter.cs

    r17406 r17519  
    11using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 using System.Threading.Tasks;
    62using HeuristicLab.Core;
    7 using Newtonsoft.Json.Linq;
    83
    94namespace HeuristicLab.JsonInterface {
     
    2520    IJsonItem Extract(IItem value, IJsonItemConverter root);
    2621
     22    /// <summary>
     23    /// The targeted type for the converter.
     24    /// </summary>
    2725    Type ConvertableType { get; }
     26
     27    /// <summary>
     28    /// A given priority, higher numbers are prior.
     29    /// </summary>
    2830    int Priority { get; }
    2931  }
Note: See TracChangeset for help on using the changeset viewer.