Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/14 14:24:40 (10 years ago)
Author:
aesterer
Message:

Refactored LineChartLogic and added CheckedItemListView to LineChartView

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ILineChartLogic.cs

    r10573 r10628  
    2222using System.Collections.Generic;
    2323using HeuristicLab.Analysis;
     24using HeuristicLab.Core;
     25using HeuristicLab.Data;
    2426
    2527namespace HeuristicLab.DataPreprocessing {
    2628  public interface ILineChartLogic {
    2729
    28     void RemoveVariable(string name);
    29 
    30     void AddVariable(string name);
    31 
    32     IEnumerable<object> GetVariableNames();
    33 
    34     DataTable GetDataTable();
    35 
    36     bool VariableIsDisplayed(string name);
     30    DataTable CreateDataTable(string title);
    3731
    3832    event DataPreprocessingChangedEventHandler Changed;
     33
     34    ICheckedItemList<StringValue> CreateVariableItemList();
     35
     36    DataRow CreateDataRow(string variableName);
     37
     38    string GetVariableNameByIndex(int index);
    3939  }
    4040}
Note: See TracChangeset for help on using the changeset viewer.