Last change
on this file since 18040 was
17519,
checked in by dpiringe, 5 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:
318 bytes
|
Line | |
---|
1 | using Newtonsoft.Json;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.JsonInterface {
|
---|
4 | public interface IValueLookupJsonItem : ILookupJsonItem {
|
---|
5 | /// <summary>
|
---|
6 | /// The IJsonItem representation of the actual value of an IValueLookupItem.
|
---|
7 | /// </summary>
|
---|
8 | [JsonIgnore]
|
---|
9 | IJsonItem ActualValue { get; set; }
|
---|
10 | }
|
---|
11 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.