Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IJsonItemValidator.cs @ 17519

Last change on this file since 17519 was 17519, checked in by dpiringe, 4 years ago

#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 size: 388 bytes
Line 
1namespace HeuristicLab.JsonInterface {
2  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>
11    ValidationResult Validate();
12  }
13}
Note: See TracBrowser for help on using the repository browser.