- Timestamp:
- 06/12/13 13:32:34 (12 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data
- Property svn:ignore
-
old new 1 1 bin 2 2 obj 3 *.user
-
- Property svn:ignore
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/AddRowCommand.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using System.Xml;27 25 using System.Windows.Forms; 28 26 using HeuristicLab.DataImporter.Data.CommandBase; … … 40 38 private IEnumerable<SortOrder> oldSortOrder; 41 39 42 private AddRowCommand() 43 : base(null, string.Empty) { 44 } 40 [StorableConstructor] 41 protected AddRowCommand(bool deserializing) : base(deserializing) { } 45 42 46 43 public AddRowCommand(DataSet dataSet, string columnGroupName, IComparable[] row) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/ChangeValueCommand.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using System.Xml;27 25 using System.Windows.Forms; 28 26 using HeuristicLab.DataImporter.Data.CommandBase; … … 42 40 private IEnumerable<SortOrder> oldSortOrder; 43 41 44 private ChangeValueCommand() 45 : base(null, string.Empty, -1) { 46 } 42 [StorableConstructor] 43 protected ChangeValueCommand(bool deserializing) : base(deserializing) { } 47 44 48 45 public ChangeValueCommand(DataSet dataSet, string columnGroupName, int columnIndex, int position, IComparable newValue) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/ChangeValuesToNullCommand.cs
r7267 r9614 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Drawing; 24 25 using System.Linq; 25 using System.Text;26 using System.Drawing;27 using System.Xml;28 26 using System.Windows.Forms; 29 27 using HeuristicLab.DataImporter.Data.CommandBase; … … 40 38 private IEnumerable<SortOrder> oldSortOrder; 41 39 42 private ChangeValuesToNullCommand() 43 : base(null, string.Empty) { 44 } 40 [StorableConstructor] 41 protected ChangeValuesToNullCommand(bool deserializing) : base(deserializing) { } 45 42 46 43 public ChangeValuesToNullCommand(DataSet dataSet, string columnGroupName, IEnumerable<Point> cellIndexes) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/DeleteColumnCommand.cs
r8387 r9614 33 33 private List<int> oldSortedColumnIndices; 34 34 35 private DeleteColumnCommand() 36 : base(null, string.Empty, null) { 35 [StorableConstructor] 36 protected DeleteColumnCommand(bool deserializing) 37 : base(deserializing) { 37 38 deletedColumns = new List<ColumnBase>(); 38 39 } -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/DeleteRowsCommand.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using System.Xml;27 25 using HeuristicLab.DataImporter.Data.CommandBase; 28 26 using HeuristicLab.DataImporter.Data.Model; … … 37 35 private List<IComparable[]> oldrows; 38 36 39 private DeleteRowsCommand() 40 : base(null, string.Empty) { 41 this.oldrows = new List<IComparable[]>(); 42 } 37 [StorableConstructor] 38 protected DeleteRowsCommand(bool deserializing) : base(deserializing) { } 43 39 44 40 public DeleteRowsCommand(DataSet dataSet, string columnGroupName, IEnumerable<int> rowIndexes) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/InsertRowCommand.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 System.Windows.Forms; 28 25 using HeuristicLab.DataImporter.Data.CommandBase; … … 39 36 private IEnumerable<SortOrder> oldSortOrder; 40 37 41 private InsertRowCommand() 42 : base(null, string.Empty) { 43 } 38 [StorableConstructor] 39 protected InsertRowCommand(bool deserializing) : base(deserializing) { } 44 40 45 41 public InsertRowCommand(DataSet dataSet, string columnGroupName, int position) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/PasteValuesCommand.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using System.Globalization;27 using System.Xml;28 25 using System.Windows.Forms; 29 26 using HeuristicLab.DataImporter.Data.CommandBase; … … 46 43 private IEnumerable<SortOrder> oldSortOrder; 47 44 48 private PasteValuesCommand() 49 : base(null, string.Empty) { 50 } 45 [StorableConstructor] 46 protected PasteValuesCommand(bool deserializing) : base(deserializing) { } 51 47 52 48 public PasteValuesCommand(DataSet dataSet, string columnGroupName, int columnIndex, int rowIndex, string values) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/RenameColumnCommand.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.Persistence.Default.CompositeSerializers.Storable; 30 25 … … 37 32 private string oldName; 38 33 39 private RenameColumnCommand() 40 : base(null, string.Empty, -1) { 41 } 34 [StorableConstructor] 35 protected RenameColumnCommand(bool deserializing) : base(deserializing) { } 42 36 43 37 public RenameColumnCommand(DataSet dataSet, string columnGroupName, int columnIndex, string newName) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/RenameColumnGroupCommand.cs
r7267 r9614 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 22 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.Persistence.Default.CompositeSerializers.Storable; 30 26 … … 37 33 private string oldName; 38 34 39 private RenameColumnGroupCommand() 40 : base(null, string.Empty) { 41 } 35 [StorableConstructor] 36 protected RenameColumnGroupCommand(bool deserializing) : base(deserializing) { } 42 37 43 38 public RenameColumnGroupCommand(DataSet dataSet, string columnGroupName, string newName) -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/SortCommand.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 25 using System.Windows.Forms; 27 using System.Xml;28 26 using HeuristicLab.DataImporter.Data.CommandBase; 29 27 using HeuristicLab.DataImporter.Data.Model; … … 41 39 private int[] indices; 42 40 43 private SortCommand() 44 : base(null, string.Empty) { 45 } 41 [StorableConstructor] 42 protected SortCommand(bool deserializing) : base(deserializing) { } 46 43 47 44 public SortCommand(DataSet dataSet, string columnGroupName, int sortColumnIndex) :
Note: See TracChangeset
for help on using the changeset viewer.