Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/14 22:08:10 (11 years ago)
Author:
pfleck
Message:
  • moved all views into views-assembly
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj

    r10552 r10557  
    100100    <Compile Include="Interfaces\ITransformationLogic.cs" />
    101101    <Compile Include="ProblemDataCreator.cs" />
    102     <Compile Include="Views\ComparisonFilterView.cs">
    103       <SubType>UserControl</SubType>
    104     </Compile>
    105     <Compile Include="Views\ComparisonFilterView.Designer.cs">
    106       <DependentUpon>ComparisonFilterView.cs</DependentUpon>
    107     </Compile>
    108     <Compile Include="Views\FilterView.cs">
    109       <SubType>UserControl</SubType>
    110     </Compile>
    111     <Compile Include="Views\FilterView.Designer.cs">
    112       <DependentUpon>FilterView.cs</DependentUpon>
    113     </Compile>
    114     <Compile Include="Views\DataPreprocessingView.cs">
    115       <SubType>UserControl</SubType>
    116     </Compile>
    117     <Compile Include="Views\DataPreprocessingView.designer.cs">
    118       <DependentUpon>DataPreprocessingView.cs</DependentUpon>
    119     </Compile>
    120     <Compile Include="Views\HistogramView.cs">
    121       <SubType>UserControl</SubType>
    122     </Compile>
    123     <Compile Include="Views\HistogramView.Designer.cs">
    124       <DependentUpon>HistogramView.cs</DependentUpon>
    125     </Compile>
    126     <Compile Include="Views\LineChartView.cs">
    127       <SubType>UserControl</SubType>
    128     </Compile>
    129     <Compile Include="Views\LineChartView.Designer.cs">
    130       <DependentUpon>LineChartView.cs</DependentUpon>
    131     </Compile>
    132     <Compile Include="Views\PreprocessingDataTableView.cs">
    133       <SubType>UserControl</SubType>
    134     </Compile>
    135     <Compile Include="Views\PreprocessingDataTableView.Designer.cs">
    136       <DependentUpon>PreprocessingDataTableView.cs</DependentUpon>
    137     </Compile>
    138     <Compile Include="Views\StatisticsView.cs">
    139       <SubType>UserControl</SubType>
    140     </Compile>
    141     <Compile Include="Views\StatisticsView.Designer.cs">
    142       <DependentUpon>StatisticsView.cs</DependentUpon>
    143     </Compile>
    144     <Compile Include="Views\TransformationView.cs">
    145       <SubType>UserControl</SubType>
    146     </Compile>
    147     <Compile Include="Views\TransformationView.Designer.cs">
    148       <DependentUpon>TransformationView.cs</DependentUpon>
    149     </Compile>
    150102    <None Include="Plugin.cs.frame" />
    151103    <Compile Include="Implementations\DataGridContent.cs" />
     
    154106    <Compile Include="Implementations\SearchLogic.cs" />
    155107    <Compile Include="Implementations\StatisticsLogic.cs" />
    156     <Compile Include="Views\DataGridContentView.cs">
    157       <SubType>UserControl</SubType>
    158     </Compile>
    159     <Compile Include="Views\DataGridContentView.Designer.cs">
    160       <DependentUpon>DataGridContentView.cs</DependentUpon>
    161     </Compile>
    162108    <Compile Include="Interfaces\IDataGridContent.cs" />
    163109    <Compile Include="Interfaces\IPreprocessingContext.cs" />
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/IFilter.cs

    r10549 r10557  
    88namespace HeuristicLab.DataPreprocessing
    99{
    10   interface IFilter : IItem, IContent
     10  public interface IFilter : IItem, IContent
    1111  {
    1212
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/SearchLogic.cs

    r10539 r10557  
    2525
    2626namespace HeuristicLab.DataPreprocessing {
    27   class SearchLogic : ISearchLogic {
     27  public class SearchLogic : ISearchLogic {
    2828    private readonly IPreprocessingData preprocessingData;
    2929
Note: See TracChangeset for help on using the changeset viewer.