- Timestamp:
- 06/12/13 13:32:34 (11 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/DataBaseCommandBase.cs
r7267 r9614 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 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 22 using HeuristicLab.DataImporter.Data.CommandBase; 5 23 using HeuristicLab.DataImporter.Data.Model; 6 using HeuristicLab.DataImporter.Data.CommandBase;7 24 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 8 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 11 28 [StorableClass] 12 29 public abstract class DatabaseCommandBase : DataSetCommandBase { 13 private DatabaseCommandBase() 14 : base(null) { 15 } 16 30 [StorableConstructor] 31 protected DatabaseCommandBase(bool deserializing) : base(deserializing) { } 17 32 protected DatabaseCommandBase(DataSet dataSet, IDbExplorer dbExplorer) 18 33 : base(dataSet) { -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/LoadColumnGroupWithSqlStringFromDBCommand.cs
r7267 r9614 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 26 using System.Xml; 22 using HeuristicLab.DataImporter.Data.CommandBase; 27 23 using HeuristicLab.DataImporter.Data.Model; 28 using HeuristicLab.DataImporter.Data.CommandBase;29 24 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 30 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 38 33 private ColumnGroup newColumnGroup; 39 34 40 private LoadColumnGroupWithSqlStringFromDBCommand() 41 : base(null, null) { 42 } 43 35 [StorableConstructor] 36 protected LoadColumnGroupWithSqlStringFromDBCommand(bool deserializing) : base(deserializing) { } 44 37 public LoadColumnGroupWithSqlStringFromDBCommand(DataSet dataSet, IDbExplorer dbExplorer, string sqlString) 45 38 : base(dataSet, dbExplorer) { -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/LoadColumnGroupsFromDBCommand.cs
r7267 r9614 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 26 using System.Xml; 23 using HeuristicLab.DataImporter.Data.CommandBase; 27 24 using HeuristicLab.DataImporter.Data.Model; 28 using HeuristicLab.DataImporter.Data.CommandBase;29 25 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 30 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 38 34 private List<ColumnGroup> newColumnGroups; 39 35 40 private LoadColumnGroupsFromDBCommand() 41 : base(null, null) { 36 [StorableConstructor] 37 protected LoadColumnGroupsFromDBCommand(bool deserializing) 38 : base(deserializing) { 42 39 this.newColumnGroups = new List<ColumnGroup>(); 43 40 } -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/ReorderColumnsCommand.cs
r7267 r9614 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using System.Linq; 25 using System.Text;26 using System.Xml;27 24 using HeuristicLab.DataImporter.Data.CommandBase; 28 25 using HeuristicLab.DataImporter.Data.Model; … … 35 32 private Dictionary<string, int[]> displayedIndexes; 36 33 37 private ReorderColumnsCommand() 38 : base(null) { 39 } 40 34 [StorableConstructor] 35 protected ReorderColumnsCommand(bool deserializing) : base(deserializing) { } 41 36 public ReorderColumnsCommand(DataSet ds, Dictionary<string, int[]> displayedIndexes) 42 37 : base(ds) { -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/DataProcessor.cs
r7267 r9614 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using System.Xml;27 using HeuristicLab.DataImporter.DbExplorer.Interfaces;28 22 using HeuristicLab.DataImporter.Data; 29 23 using HeuristicLab.DataImporter.Data.Model; 24 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 30 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 26 32 27 namespace HeuristicLab.DataImporter.DataProcessor { 33 28 [StorableClass] 34 public class DataProcessor {29 public class DataProcessor { 35 30 public DataProcessor() { 36 31 this.commandChain = new CommandChain(); 37 32 this.dataSet = new DataSet(); 33 } 34 [StorableConstructor] 35 protected DataProcessor(bool deserializing) 36 : base() { 37 this.commandChain = new CommandChain(); 38 38 } 39 39 -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Plugin.cs.frame
r8626 r9614 31 31 [PluginFile("HeuristicLab.DataImporter.DataProcessor-1.0.dll", PluginFileType.Assembly)] 32 32 [PluginFile("HeuristicLab.DataImporter.DbExplorer.Interfaces-1.0.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.ALGLIB","3.6")]34 33 [PluginDependency("HeuristicLab.Common.Resources","3.3")] 34 [PluginDependency("HeuristicLab.Problems.DataAnalysis","3.4")] 35 35 [PluginDependency("HeuristicLab.Persistence","3.3")] 36 36 public class HeuristicLabDataImporterDataProcessorPlugin : PluginBase {
Note: See TracChangeset
for help on using the changeset viewer.