Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IRangedJsonItem.cs @ 18031

Last change on this file since 18031 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: 400 bytes
Line 
1using System;
2
3namespace HeuristicLab.JsonInterface {
4  public interface IRangedJsonItem<T> : IIntervalRestrictedJsonItem<T>
5    where T : IComparable
6  {
7    /// <summary>
8    /// The lower bound of an ranged item.
9    /// </summary>
10    T MinValue { get; set; }
11    /// <summary>
12    /// The upper bound of an ranged item.
13    /// </summary>
14    T MaxValue { get; set; }
15  }
16}
Note: See TracBrowser for help on using the repository browser.