Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.Manufacture/ParameterTransformer/LookupParameterTransformer.cs @ 17271

Last change on this file since 17271 was 17271, checked in by dpiringe, 5 years ago

#3026

  • renamed ParameterData to Component
  • renamed File Template.cs to Component.cs
File size: 487 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Core;
7
8namespace HeuristicLab.Manufacture {
9  public class LookupParameterTransformer : ParameterBaseTransformer {
10    public override Component ExtractData(IParameter value) {
11      return new Component() { Name = value.Name };
12    }
13
14    public override void InjectData(IParameter parameter, Component data) {
15     
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.