Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/10/20 17:29:35 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • added property Description in IJsonItem and updated all construction calls
  • updated UnsupportedJsonItem with unsupported property Description
  • updated JsonItemBaseControl and JsonItemVMBase for new property Description
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters/ValueParameterConverter.cs

    r17420 r17433  
    2323
    2424      IJsonItem item = new JsonItem() {
    25         Name = parameter.Name
     25        Name = parameter.Name,
     26        Description = parameter.Description
    2627      };
    2728
     
    3132          if (tmp.Name == "[OverridableParamName]") {
    3233            tmp.Name = parameter.Name;
     34            tmp.Description = parameter.Description;
    3335            item = tmp;
    3436            //JsonItem.Merge(item as JsonItem, tmp as JsonItem);
Note: See TracChangeset for help on using the changeset viewer.