- Timestamp:
- 06/11/14 10:14:32 (10 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/HeuristicLab.DataPreprocessing-3.4.csproj
r10925 r10962 80 80 <Compile Include="Implementations\DataGridLogic.cs" /> 81 81 <Compile Include="Implementations\PreprocessingDataTable.cs" /> 82 <Compile Include="Interfaces\IViewChartShortcut.cs" /> 82 83 <Compile Include="Interfaces\IFilteredPreprocessingData.cs" /> 83 84 <Compile Include="Implementations\CorrelationMatrixContent.cs" /> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/CorrelationMatrixContent.cs
r10934 r10962 28 28 29 29 [Item("Feature Correlation Matrix", "Represents the feature correlation matrix.")] 30 public class CorrelationMatrixContent : Item, IView Shortcut {30 public class CorrelationMatrixContent : Item, IViewChartShortcut { 31 31 32 32 public DataAnalysisProblemData ProblemData { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/DataCompletenessChartContent.cs
r10913 r10962 10 10 { 11 11 [Item("DataCompletenessChart", "Represents a datacompleteness chart.")] 12 public class DataCompletenessChartContent : Item, IView Shortcut12 public class DataCompletenessChartContent : Item, IViewChartShortcut 13 13 { 14 14 private readonly DataGridLogic dataGridLogic; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/PreprocessingChartContent.cs
r10877 r10962 29 29 namespace HeuristicLab.DataPreprocessing { 30 30 [Item("PreprocessingChart", "Represents a preprocessing chart.")] 31 public class PreprocessingChartContent : Item, IView Shortcut {31 public class PreprocessingChartContent : Item, IViewChartShortcut { 32 32 33 33 private bool allInOneMode = true; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Interfaces/IViewChartShortcut.cs
r10929 r10962 23 23 24 24 namespace HeuristicLab.DataPreprocessing { 25 public interface IView Shortcut : IItem{25 public interface IViewChartShortcut : IViewShortcut { 26 26 } 27 27 }
Note: See TracChangeset
for help on using the changeset viewer.