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/IJsonItemValidator.cs

    r17481 r17519  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 using System.Threading.Tasks;
    6 
    7 namespace HeuristicLab.JsonInterface {
     1namespace HeuristicLab.JsonInterface {
    82  public interface IJsonItemValidator {
     3    /// <summary>
     4    /// Validate method to validate a JsonItem.
     5    /// </summary>
     6    /// <returns>
     7    /// The result of the validation process,
     8    /// contains a sucess flag and a list of errors
     9    /// (if validation failed).
     10    /// </returns>
    911    ValidationResult Validate();
    1012  }
Note: See TracChangeset for help on using the changeset viewer.