Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IIntervalRestrictedJsonItem.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: 518 bytes
Line 
1using System;
2
3namespace HeuristicLab.JsonInterface {
4  /// <summary>
5  /// Interface to get a interval restrict JsonItems.
6  /// </summary>
7  /// <typeparam name="T"></typeparam>
8  public interface IIntervalRestrictedJsonItem<T> : IJsonItem
9    where T : IComparable {
10    /// <summary>
11    /// The allowed minimum of the JsonItem.
12    /// </summary>
13    T Minimum { get; set; }
14    /// <summary>
15    /// The allowed maximum of the JsonItem.
16    /// </summary>
17    T Maximum { get; set; }
18  }
19}
Note: See TracBrowser for help on using the repository browser.