#region License Information /* HeuristicLab * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Collections.Generic; using System.Linq; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; using HeuristicLab.Parameters; using HeuristicLab.Data; using HeuristicLab.Problems.DataAnalysis; using System.Drawing; using System.IO; namespace HeuristicLab.Problems.DataAnalysis { [Item("Data Analysis Problem", "Represents a data analysis problem.")] [Creatable("Problems")] [StorableClass] public class DataAnalysisProblem : ParameterizedNamedItem { private const string DataAnalysisProblemDataParameterName = "DataAnalysisProblemData"; public override Image ItemImage { get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Type; } } #region Parameter Properties public ValueParameter DataAnalysisProblemDataParameter { get { return (ValueParameter)Parameters[DataAnalysisProblemDataParameterName]; } } #endregion #region properties public DataAnalysisProblemData DataAnalysisProblemData { get { return DataAnalysisProblemDataParameter.Value; } } #endregion public DataAnalysisProblem() : base() { Parameters.Add(new ValueParameter(DataAnalysisProblemDataParameterName, "The data set, target variable and input variables of the data analysis problem.", new DataAnalysisProblemData())); RegisterParameterEvents(); RegisterParameterValueEvents(); } [StorableConstructor] private DataAnalysisProblem(bool deserializing) : base() { } [StorableHook(HookType.AfterDeserialization)] private void AfterDeserializationHook() { RegisterParameterEvents(); RegisterParameterValueEvents(); } #region events protected virtual void OnDataAnalysisProblemChanged(EventArgs e) { } private void RegisterParameterEvents() { DataAnalysisProblemDataParameter.ValueChanged += new EventHandler(DataAnalysisProblemDataParameter_ValueChanged); } private void RegisterParameterValueEvents() { DataAnalysisProblemData.ProblemDataChanged += new EventHandler(DataAnalysisProblemData_ProblemDataChanged); } private void DataAnalysisProblemDataParameter_ValueChanged(object sender, EventArgs e) { OnDataAnalysisProblemChanged(e); } private void DataAnalysisProblemData_ProblemDataChanged(object sender, EventArgs e) { OnDataAnalysisProblemChanged(e); } #endregion public override IDeepCloneable Clone(Cloner cloner) { DataAnalysisProblem clone = (DataAnalysisProblem) base.Clone(cloner); clone.RegisterParameterEvents(); clone.RegisterParameterValueEvents(); return clone; } } }