Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/17/08 10:54:57 (16 years ago)
Author:
mkommend
Message:

PointXYChart refactored to use generic ItemList instead of Itemlist<ItemList<DoubleArrayData>> (ticket #310)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Logging/PointXYChartInjector.cs

    r671 r677  
    3838      AddVariableInfo(connectDotsInfo);
    3939      AddVariable(new Variable("ConnectDots", new BoolData(true)));
    40       AddVariableInfo(new VariableInfo("Values", "Item list holding the values of the pointXYchart", typeof(ItemList<ItemList<DoubleArrayData>>), VariableKind.In));
     40      AddVariableInfo(new VariableInfo("Values", "Item list holding the values of the pointXYchart", typeof(ItemList), VariableKind.In));
    4141      AddVariableInfo(new VariableInfo("PointXYchart", "Object representing a pointXYchart", typeof(PointXYChart), VariableKind.New | VariableKind.Out));
    4242    }
     
    4444    public override IOperation Apply(IScope scope) {
    4545      bool connectDots = GetVariableValue<BoolData>("ConnectDots", scope, true).Data;
    46       ItemList<ItemList<DoubleArrayData>> values = GetVariableValue<ItemList<ItemList<DoubleArrayData>>>("Values", scope, true);
     46      ItemList values = GetVariableValue<ItemList>("Values", scope, true);
    4747      PointXYChart pointXYchart = GetVariableValue<PointXYChart>("PointXYchart", scope, false, false);
    4848      if (pointXYchart == null) {
Note: See TracChangeset for help on using the changeset viewer.