Last change
on this file since 17530 was
17473,
checked in by dpiringe, 5 years ago
|
#3026:
- refactored inheritance structure of json items, now the default JsonItem is an abstract class without properties Value and Range -> splitted up into new interfaces
- updated view models for new json item structure
- updated SingleLineArrayJsonWriter
|
File size:
444 bytes
|
Rev | Line | |
---|
[17446] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Threading.Tasks;
|
---|
[17471] | 6 | using System.Windows.Forms;
|
---|
[17446] | 7 |
|
---|
| 8 | namespace HeuristicLab.JsonInterface.OptimizerIntegration {
|
---|
[17473] | 9 | public class ResultItemVM : JsonItemVMBase<ResultJsonItem> {
|
---|
| 10 | public override Type TargetedJsonItemType => typeof(ResultJsonItem);
|
---|
[17471] | 11 | public override UserControl Control =>
|
---|
[17446] | 12 | new JsonItemBaseControl(this);
|
---|
| 13 | }
|
---|
| 14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.