Changeset 17443 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels
- Timestamp:
- 02/18/20 14:39:50 (5 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/SingleValueVM.cs
r17433 r17443 14 14 protected override int MaxTypeValue => int.MaxValue; 15 15 16 public override JsonItemBaseControl GetControl() => 16 public override JsonItemBaseControl GetControl() => 17 17 new JsonItemIntValueControl(this); 18 18 } … … 24 24 protected override double MaxTypeValue => double.MaxValue; 25 25 26 public override JsonItemBaseControl GetControl() => 26 public override JsonItemBaseControl GetControl() => 27 27 new JsonItemDoubleValueControl(this); 28 28 } -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/StringValueVM.cs
r17417 r17443 20 20 21 21 public IEnumerable<string> Range { 22 get => Item.Range .Cast<string>();22 get => Item.Range?.Cast<string>(); 23 23 set { 24 24 Item.Range = value;
Note: See TracChangeset
for help on using the changeset viewer.