#region License Information /* HeuristicLab * Copyright (C) 2002-2013 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.Linq; using HeuristicLab.DataImporter.Data.CommandBase; using HeuristicLab.DataImporter.Data.Model; using HEAL.Attic; namespace HeuristicLab.DataImporter.Data.Command { [StorableType("18DFE34C-FA59-496E-BC56-70FDCF861CF1")] public class RenameColumnGroupCommand : ColumnGroupCommandBase { [Storable] private string newName; private string oldName; [StorableConstructor] protected RenameColumnGroupCommand(StorableConstructorFlag _) : base(_) { } public RenameColumnGroupCommand(DataSet dataSet, string columnGroupName, string newName) : base(dataSet, columnGroupName) { this.newName = newName; } public override string Description { get { return "Rename ColumnGroup"; } } public override void Execute() { base.Execute(); oldName = ColumnGroup.Name; ColumnGroup.Name = newName; ColumnGroup.FireChanged(); this.ColumnGroup = null; } public override void UndoExecute() { base.UndoExecute(); ColumnGroup ColumnGroup = this.DataSet.ColumnGroups.Where(cg => cg.Name == newName).First(); ColumnGroup.Name = oldName; oldName = null; ColumnGroup.FireChanged(); this.ColumnGroup = null; } } }