Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/11/14 12:35:14 (10 years ago)
Author:
rstoll
Message:
  • Simplified DataGridContent - using a private set in the property instead of private fields
  • Disabled transformation if filter is active
  • Code Fromatted
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/TransformationContent.cs

    r10902 r10977  
    3030
    3131    public IPreprocessingData Data { get; private set; }
     32    public IFilterLogic FilterLogic { get; private set; }
    3233
    3334    public ICheckedItemList<ITransformation> CheckedTransformationList { get; private set; }
    3435
    35     public TransformationContent(IPreprocessingData data) {
     36    public static new Image StaticItemImage {
     37      get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
     38    }
     39
     40    public TransformationContent(IPreprocessingData data, IFilterLogic filterLogic) {
    3641      Data = data;
    3742      CheckedTransformationList = new CheckedItemList<ITransformation>();
     43      FilterLogic = filterLogic;
    3844    }
    3945
     
    4450    }
    4551
    46     public static new Image StaticItemImage {
    47       get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
    48     }
    49 
    5052    public override IDeepCloneable Clone(Cloner cloner) {
    5153      return new TransformationContent(this, cloner);
Note: See TracChangeset for help on using the changeset viewer.