- Timestamp:
- 03/19/14 14:24:40 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ILineChartLogic.cs
r10573 r10628 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Analysis; 24 using HeuristicLab.Core; 25 using HeuristicLab.Data; 24 26 25 27 namespace HeuristicLab.DataPreprocessing { 26 28 public interface ILineChartLogic { 27 29 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); 37 31 38 32 event DataPreprocessingChangedEventHandler Changed; 33 34 ICheckedItemList<StringValue> CreateVariableItemList(); 35 36 DataRow CreateDataRow(string variableName); 37 38 string GetVariableNameByIndex(int index); 39 39 } 40 40 }
Note: See TracChangeset
for help on using the changeset viewer.