Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/03/20 17:32:50 (5 years ago)
Author:
dpiringe
Message:

#3026:

  • refactored ranged based VMs -> created new 'base' class for ranged based VMs RangedValueBaseVM
  • renamed AddChilds to AddChildren
  • implemented ArrayValueVM and JsonItemArrayValueControl
  • added ranges for array and matrix values
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Models/JsonItems.cs

    r17417 r17420  
    88  public class IntJsonItem : JsonItem<int> {}
    99  public class IntArrayJsonItem: JsonItem<int[], int> { }
     10  public class IntRangeJsonItem : JsonItem<int[], int> { }
    1011  public class IntMatrixJsonItem : JsonItem<int[][], int> { }
    1112
    1213  public class DoubleJsonItem: JsonItem<double> {}
    1314  public class DoubleArrayJsonItem: JsonItem<double[], double> { }
     15  public class DoubleRangeJsonItem : JsonItem<double[], double> { }
    1416  public class DoubleMatrixJsonItem : JsonItem<double[][], double> { }
    1517
Note: See TracChangeset for help on using the changeset viewer.