- Timestamp:
- 05/07/14 13:24:56 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs
r10614 r10813 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using System.Collections.Generic; 26 using HeuristicLab.DataPreprocessing.Filter; 25 27 26 28 namespace HeuristicLab.DataPreprocessing { 27 29 [Item("Filter", "Represents the filter grid.")] 28 30 public class FilterContent : Item, IViewShortcut { 31 32 private IList<IFilter> filters = new List<IFilter>(); 29 33 30 34 public static new Image StaticItemImage { … … 43 47 } 44 48 49 public IList<IFilter> Filters 50 { 51 get 52 { 53 return this.filters; 54 } 55 set 56 { 57 this.filters = value; 58 } 59 } 60 45 61 public FilterContent(FilterContent content, Cloner cloner) 46 62 : base(content, cloner) { … … 52 68 } 53 69 70 71 54 72 } 55 73 }
Note: See TracChangeset
for help on using the changeset viewer.