Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs @ 10303

Last change on this file since 10303 was 10303, checked in by aesterer, 10 years ago

Added empty views classes; Inserted view items into data preprocessing view

File size: 955 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3using System;
4using System.Collections.Generic;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8
9namespace HeuristicLab.DataPreprocessing
10{
11  [Item("FilterContent", "Represents the filter grid.")]
12  public class FilterContent : Item
13  {
14
15    private readonly IFilterLogic filterLogic;
16    public FilterContent(IFilterLogic theFilterLogic)
17    {
18      filterLogic = theFilterLogic;
19    }
20
21    public IFilterLogic FilterLogic
22    {
23      get {
24        return filterLogic;
25      }
26    }
27
28    public FilterContent(FilterContent content, Cloner cloner)
29      : base(content, cloner)
30    {
31
32    }
33
34    public static new Image StaticItemImage
35    {
36      get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
37    }
38
39    public override IDeepCloneable Clone(Cloner cloner)
40    {
41      return new FilterContent(this, cloner);
42    }
43
44  }
45}
Note: See TracBrowser for help on using the repository browser.