Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/14 23:11:44 (10 years ago)
Author:
pfleck
Message:
  • removed unnecessary references and using
  • added missing license header
  • formatted code according to HL standards
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ComparisonFilterView.cs

    r10557 r10558  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.ComponentModel;
    4 using System.Drawing;
    5 using System.Linq;
    6 using System.Text;
    7 using System.Windows.Forms;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
    822using HeuristicLab.Core.Views;
     23using HeuristicLab.DataPreprocessing.Filter;
    924using HeuristicLab.MainForm;
    10 using HeuristicLab.MainForm.WindowsForms;
    1125
    12 namespace HeuristicLab.DataPreprocessing.Views
    13 {
     26namespace HeuristicLab.DataPreprocessing.Views {
    1427  [View("Comparison Filter View")]
    1528  [Content(typeof(ComparisonFilter), false)]
    16   public partial class ComparisonFilterView : ItemView
    17   {
    18     public ComparisonFilterView()
    19     {
     29  public partial class ComparisonFilterView : ItemView {
     30    public ComparisonFilterView() {
    2031      InitializeComponent();
    2132    }
    2233
    23     public new ComparisonFilter Content
    24     {
     34    public new ComparisonFilter Content {
    2535      get { return (ComparisonFilter)base.Content; }
    2636      set { base.Content = value; }
    2737    }
    2838
    29     protected override void OnContentChanged()
    30     {
     39    protected override void OnContentChanged() {
    3140      base.OnContentChanged();
    3241    }
Note: See TracChangeset for help on using the changeset viewer.