- Timestamp:
- 06/12/13 13:32:34 (12 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/ChangeDateTimeColumnToDoubleColumn.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text; 25 using System.Windows.Forms; 26 using HeuristicLab.DataImporter.Command.View; 27 using HeuristicLab.DataImporter.Data; 26 28 using HeuristicLab.DataImporter.Data.CommandBase; 27 29 using HeuristicLab.DataImporter.Data.Model; 28 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 using HeuristicLab.DataImporter.Data;30 using HeuristicLab.DataImporter.Command.View;31 using System.Windows.Forms;32 31 33 32 namespace HeuristicLab.DataImporter.Command { … … 42 41 private IEnumerable<SortOrder> oldSortOrder; 43 42 44 private ChangeDateTimeColumnToDoubleColumn() 45 : base(null, string.Empty, null) { 43 [StorableConstructor] 44 protected ChangeDateTimeColumnToDoubleColumn(bool deserializing) 45 : base(deserializing) { 46 46 newColumns = new List<ColumnBase>(); 47 47 oldColumns = new List<ColumnBase>(); -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/DeleteNotEquidistantRowsCommand.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; 26 using HeuristicLab.DataImporter.Command.View; 27 using HeuristicLab.DataImporter.Data; 28 28 using HeuristicLab.DataImporter.Data.CommandBase; 29 29 using HeuristicLab.DataImporter.Data.Model; 30 using HeuristicLab.DataImporter.Data;31 using HeuristicLab.DataImporter.Command.View;32 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 31 … … 42 40 private IEnumerable<SortOrder> oldSortOrder; 43 41 44 private DeleteNotEquidistantRowsCommand() 45 : base(null, string.Empty) { 42 [StorableConstructor] 43 protected DeleteNotEquidistantRowsCommand(bool deserializing) 44 : base(deserializing) { 46 45 oldColumns = new List<ColumnBase>(); 47 46 } -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/EquidistantSamplingCommand.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; 26 using HeuristicLab.DataImporter.Command.View; 27 using HeuristicLab.DataImporter.Data; 28 28 using HeuristicLab.DataImporter.Data.CommandBase; 29 29 using HeuristicLab.DataImporter.Data.Model; 30 using HeuristicLab.DataImporter.Data;31 using HeuristicLab.DataImporter.Command.View;32 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 31 … … 40 38 private DateTimeColumn columnToSample; 41 39 42 private EquidistantSamplingCommand() 43 : base(null, string.Empty) { 44 } 45 40 [StorableConstructor] 41 protected EquidistantSamplingCommand(bool deserializing) : base(deserializing) { } 46 42 public EquidistantSamplingCommand(DataSet dataSet, string columnGroupName) 47 43 : base(dataSet, columnGroupName) { -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/EquidistantTimeSeriesCommandBase.cs
r7267 r9614 21 21 22 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 23 using HeuristicLab.DataImporter.Data; 26 24 using HeuristicLab.DataImporter.Data.CommandBase; 25 using HeuristicLab.DataImporter.Data.Model; 27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HeuristicLab.DataImporter.Data.Model;29 using HeuristicLab.DataImporter.Data;30 27 31 28 namespace HeuristicLab.DataImporter.Command { 32 29 [StorableClass] 33 30 public abstract class EquidistantTimeSeriesCommandBase : ColumnGroupCommandBase { 34 private EquidistantTimeSeriesCommandBase() 35 : base(null, string.Empty) { 36 } 37 31 [StorableConstructor] 32 protected EquidistantTimeSeriesCommandBase(bool deserializing) : base(deserializing) { } 38 33 public EquidistantTimeSeriesCommandBase(DataSet dataSet, string columnGroupName) 39 34 : base(dataSet, columnGroupName) { -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/InterpolateMissingValues.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 25 using System.Windows.Forms; 26 using HeuristicLab.DataImporter.Data; 27 27 using HeuristicLab.DataImporter.Data.CommandBase; 28 28 using HeuristicLab.DataImporter.Data.Model; 29 using HeuristicLab.DataImporter.Data;30 using HeuristicLab.DataImporter.Command.View;31 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 30 … … 39 37 private DateTimeColumn columnToSample; 40 38 41 private InterpolateMissingValues() 42 : base(null, string.Empty, null) { 43 } 44 39 [StorableConstructor] 40 protected InterpolateMissingValues(bool deserializing) : base(deserializing) { } 45 41 public InterpolateMissingValues(DataSet dataSet, string columnGroupName, int[] affectedColumns) 46 42 : base(dataSet, columnGroupName, affectedColumns) { -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/SetPartOfDateTimeCommand.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; 26 using HeuristicLab.DataImporter.Command.View; 27 using HeuristicLab.DataImporter.Data; 28 28 using HeuristicLab.DataImporter.Data.CommandBase; 29 29 using HeuristicLab.DataImporter.Data.Model; 30 using HeuristicLab.DataImporter.Data;31 using HeuristicLab.DataImporter.Command.View;32 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 31 … … 41 39 private IEnumerable<SortOrder> oldSortOrder; 42 40 43 private SetPartOfDateTimeCommand() 44 : base(null, string.Empty, null) { 45 } 46 41 [StorableConstructor] 42 protected SetPartOfDateTimeCommand(bool deserializing) : base(deserializing) { } 47 43 public SetPartOfDateTimeCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns) 48 44 : base(dataSet, columnGroupName, affectedColumns) {
Note: See TracChangeset
for help on using the changeset viewer.