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:
670 bytes
|
Rev | Line | |
---|
[17519] | 1 | namespace HeuristicLab.JsonInterface {
|
---|
[17353] | 2 | /// <summary>
|
---|
| 3 | /// Constants for reading/writing templates.
|
---|
| 4 | /// </summary>
|
---|
[17287] | 5 | internal class Constants {
|
---|
| 6 |
|
---|
[17330] | 7 | internal const string Metadata = "Metadata";
|
---|
[17435] | 8 | internal const string TemplateName = "TemplateName";
|
---|
[17379] | 9 | internal const string HLFileLocation = "HLFileLocation";
|
---|
| 10 | internal const string Parameters = "Parameters";
|
---|
[17439] | 11 | internal const string Results = "Results";
|
---|
[17287] | 12 |
|
---|
[17330] | 13 | internal const string Template = @"{
|
---|
[17379] | 14 | '" + Metadata + @"': {
|
---|
[17435] | 15 | '" + TemplateName + @"':'',
|
---|
[17379] | 16 | '" + HLFileLocation + @"':''
|
---|
[17287] | 17 | },
|
---|
[17405] | 18 | '" + Parameters + @"': [],
|
---|
[17439] | 19 | '" + Results + @"': []
|
---|
[17287] | 20 | }";
|
---|
| 21 | }
|
---|
| 22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.