- Timestamp:
- 01/28/19 14:31:52 (6 years ago)
- Location:
- addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateCommandBase.cs
r16566 r16567 32 32 public abstract class AggregateCommandBase : ColumnGroupCommandWithAffectedColumnsBase { 33 33 [StorableConstructor] 34 protected AggregateCommandBase(bool deserializing) 35 : base(deserializing) { 34 protected AggregateCommandBase(StorableConstructorFlag _) : base(_) { 36 35 oldColumns = new List<ColumnBase>(); 37 36 newColumns = new List<ColumnBase>(); -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMaxCommand.cs
r16566 r16567 34 34 public class AggregateWithMaxCommand : AggregateCommandBase { 35 35 [StorableConstructor] 36 protected AggregateWithMaxCommand( bool deserializing) : base(deserializing) { }36 protected AggregateWithMaxCommand(StorableConstructorFlag _) : base(_) { } 37 37 38 38 public AggregateWithMaxCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns) -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMeanCommand.cs
r16566 r16567 34 34 public class AggregateWithMeanCommand : AggregateCommandBase { 35 35 [StorableConstructor] 36 protected AggregateWithMeanCommand( bool deserializing) : base(deserializing) { }36 protected AggregateWithMeanCommand(StorableConstructorFlag _) : base(_) { } 37 37 38 38 public AggregateWithMeanCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns) -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMedianCommand.cs
r16566 r16567 34 34 public class AggregateWithMedianCommand : AggregateCommandBase { 35 35 [StorableConstructor] 36 protected AggregateWithMedianCommand( bool deserializing) : base(deserializing) { }36 protected AggregateWithMedianCommand(StorableConstructorFlag _) : base(_) { } 37 37 38 38 public AggregateWithMedianCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns) -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMinCommand.cs
r16566 r16567 34 34 public class AggregateWithMinCommand : AggregateCommandBase { 35 35 [StorableConstructor] 36 protected AggregateWithMinCommand( bool deserializing) : base(deserializing) { }36 protected AggregateWithMinCommand(StorableConstructorFlag _) : base(_) { } 37 37 38 38 public AggregateWithMinCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns) -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithSumCommand.cs
r16566 r16567 34 34 public class AggregateWithSumCommand : AggregateCommandBase { 35 35 [StorableConstructor] 36 protected AggregateWithSumCommand( bool deserializing) : base(deserializing) { }36 protected AggregateWithSumCommand(StorableConstructorFlag _) : base(_) { } 37 37 38 38 public AggregateWithSumCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns) -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/DeleteRowsWithDuplicateKeyValuesCommand.cs
r16566 r16567 35 35 private Dictionary<int, IComparable[]> deletedRows; 36 36 [StorableConstructor] 37 protected DeleteRowsWithDuplicateKeyValuesCommand(bool deserializing) 38 : base(deserializing) { 37 protected DeleteRowsWithDuplicateKeyValuesCommand(StorableConstructorFlag _) : base(_) { 39 38 deletedRows = new Dictionary<int, IComparable[]>(); 40 39 }
Note: See TracChangeset
for help on using the changeset viewer.