Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 14:00:42 (5 years ago)
Author:
gkronber
Message:

#2520: updated HeuristicLab.DataImporter addon for new Persistence (introduced in 3.3.16)

Location:
addons/HeuristicLab.DataImporter
Files:
1 added
55 edited

Legend:

Unmodified
Added
Removed
  • addons/HeuristicLab.DataImporter

    • Property svn:ignore
      •  

        old new  
        22_ReSharper.HeuristicLab.DataImporter
        33*.user
         4packages
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateCommandBase.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("58B3B134-1447-4729-81EE-B1D9A63D6CB5")]
    3132  public abstract class AggregateCommandBase : ColumnGroupCommandWithAffectedColumnsBase {
    3233    [StorableConstructor]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMaxCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("E703275A-0F64-47D1-AE9D-6875076E0EA7")]
    3132  [ViewableCommandInfoAttribute("Maximum", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnNotSorted
    3233    , "Aggregation", Position = 4, OptionsView = typeof(AggregationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMeanCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("CD91F6D9-D301-4DE1-8EAE-168B9EB9D462")]
    3132  [ViewableCommandInfoAttribute("Mean", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnNotSorted,
    3233    "Aggregation", Position = 0, OptionsView = typeof(AggregationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMedianCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("45AD29AA-8DF3-4E01-B754-2984BA4174E6")]
    3132  [ViewableCommandInfoAttribute("Median", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnNotSorted,
    3233   "Aggregation", Position = 1, OptionsView = typeof(AggregationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithMinCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("91A0FDBD-841F-417E-BF6A-30760E351114")]
    3132  [ViewableCommandInfoAttribute("Minimum", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnNotSorted,
    3233   "Aggregation", Position = 3, OptionsView = typeof(AggregationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateWithSumCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("94172982-1F24-493B-A2F2-335D55847AA5")]
    3132  [ViewableCommandInfoAttribute("Sum", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnNotSorted,
    3233   "Aggregation", Position = 2, OptionsView = typeof(AggregationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/DeleteRowsWithDuplicateKeyValuesCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("D5B50465-DB77-4CDE-9043-6968A841BF1C")]
    3233  [ViewableCommandInfoAttribute("Delete Rows", 1, ColumnGroupState.Sorted, "Aggregation", Position = 5)]
    3334  public class DeleteRowsWithDuplicateKeyValuesCommand : ColumnGroupCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/AddNewColumnCommandBase.cs

    r9615 r16566  
    2525using HeuristicLab.DataImporter.Data.Model;
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.DataImporter.Command {
    29   [StorableClass]
     30  [StorableType("4CDBC88C-783D-49A6-9E80-4833FE5374FA")]
    3031  public abstract class AddNewColumnCommandBase : ColumnGroupCommandBase {
    3132    [StorableConstructor]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/AddNewDateTimeColumnCommand.cs

    r9615 r16566  
    2828using HeuristicLab.DataImporter.Data;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3031
    3132namespace HeuristicLab.DataImporter.Command {
    32   [StorableClass]
     33  [StorableType("C1B16D51-0F7A-4FEA-B7E4-7C30EF290EFC")]
    3334  [ViewableCommandInfoAttribute("New DateTimeColumn", 1, ColumnGroupState.Active, "Column Commands", Position = 9)]
    3435  public class AddNewDateTimeColumnCommand : AddNewColumnCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/AddNewDoubleColumnCommand.cs

    r9615 r16566  
    2424using HeuristicLab.DataImporter.Data.Model;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2627
    2728namespace HeuristicLab.DataImporter.Command {
    28   [StorableClass]
     29  [StorableType("D20943C1-1B82-458F-9DCA-EE18BECD751E")]
    2930  [ViewableCommandInfoAttribute("New DoubleColumn", 1, ColumnGroupState.Active, "Column Commands", Position = 7)]
    3031  public class AddNewDoubleColumnCommand : AddNewColumnCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/AddNewProgrammableColumnCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("62438177-F416-48D6-A1F3-54E48FFAD130")]
    3132  [ViewableCommandInfoAttribute("New ProgrammableColumn", 1, ColumnGroupState.Active, "Column Commands", Position = 10,
    3233  OptionsView = typeof(ProgrammableColumnCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/AddNewStringColumnCommand.cs

    r9615 r16566  
    2424using HeuristicLab.DataImporter.Data.Model;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2627
    2728namespace HeuristicLab.DataImporter.Command {
    28   [StorableClass]
     29  [StorableType("BA39D41A-B88E-4BBC-AFB4-89B94694556A")]
    2930  [ViewableCommandInfoAttribute("New StringColumn", 1, ColumnGroupState.Active, "Column Commands", Position = 8)]
    3031  public class AddNewStringColumnCommand : AddNewColumnCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/ChangeColumnCommandBase.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("A67CC5A7-4C36-418A-BC86-59DA37E38531")]
    3233  public abstract class ChangeColumnCommandBase : ColumnGroupCommandWithAffectedColumnsBase {
    3334    [Storable]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/ChangeColumnToDateTimeColumnCommand.cs

    r9615 r16566  
    2424using HeuristicLab.DataImporter.Data.Model;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2627
    2728namespace HeuristicLab.DataImporter.Command {
    28   [StorableClass]
     29  [StorableType("518098B9-5EE1-424B-9429-FEE332048D0C")]
    2930  [ViewableCommandInfoAttribute("Change to DateTimeColumn", 1, ColumnGroupState.ColumnSelected, "Column Commands", Position = 13)]
    3031  public class ChangeColumnToDateTimeColumnCommand : ChangeColumnCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/ChangeColumnToDoubleColumnCommand.cs

    r9615 r16566  
    2424using HeuristicLab.DataImporter.Data.Model;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2627
    2728namespace HeuristicLab.DataImporter.Command {
    28   [StorableClass]
     29  [StorableType("D9459202-03DD-4FE9-98BB-2BC990A0D14C")]
    2930  [ViewableCommandInfoAttribute("Change to DoubleColumn", 1, ColumnGroupState.ColumnSelected, "Column Commands", Position = 11)]
    3031  public class ChangeColumnToDoubleColumnCommand : ChangeColumnCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/ChangeColumnToStringColumnCommand.cs

    r9615 r16566  
    2424using HeuristicLab.DataImporter.Data.Model;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2627
    2728namespace HeuristicLab.DataImporter.Command {
    28   [StorableClass]
     29  [StorableType("75470583-1EF6-4F8D-8765-AF18585C02CE")]
    2930  [ViewableCommandInfoAttribute("Change to StringColumn", 1, ColumnGroupState.ColumnSelected, "Column Commands", Position = 12)]
    3031  public class ChangeColumnToStringColumnCommand : ChangeColumnCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/CreateTimeSeriesColumnsCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("421841E2-B771-4A53-AEE2-6D8A4B68542D")]
    3233  [ViewableCommandInfo("Create time series columns", 1, ColumnGroupState.DoubleColumnSelected, "Column Commands",
    3334    Position = 16, SelectedColumns = 4)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/SplitCategorialColumnCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("761D175C-8E2B-4F07-946C-95400CC41947")]
    3233  [ViewableCommandInfo("Split categorial column", 1, ColumnGroupState.ColumnSelected, "Column Commands",
    3334    Position = 16, SelectedColumns = 1)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/SplitDictionaryStyleDataCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("296E9F12-31EC-42F2-9745-B164A5FCE302")]
    3233  [ViewableCommandInfo("Split Dictionary-style Data", 1, ColumnGroupState.ColumnSelected | ColumnGroupState.Sorted, "Column Commands",
    3334    Position = 15)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeDataset/AddNewColumnGroupCommand.cs

    r9615 r16566  
    2929using HeuristicLab.DataImporter.Data.Model;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    31 
     31using HEAL.Attic;
    3232
    3333namespace HeuristicLab.DataImporter.Command {
    34   [StorableClass]
     34  [StorableType("BAE4C6C2-980A-45CB-B172-BAEF880A66A6")]
    3535  [ViewableCommandInfoAttribute("New ColumnGroup", 0, ColumnGroupState.None, "ColumnGroup Commands", Position = 0)]
    3636  public class AddNewColumnGroupCommand : DataSetCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeDataset/AlignColumnGroupsCommand.cs

    r9615 r16566  
    2828using HeuristicLab.DataImporter.Data.Model;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3031
    3132namespace HeuristicLab.DataImporter.Command {
    32   [StorableClass]
     33  [StorableType("05117E5A-512A-4891-9449-7FA7E5597EBD")]
    3334  [ViewableCommandInfo("Align ColumnGroups", 2, ColumnGroupState.Sorted, "ColumnGroup Commands", Position = 4)]
    3435  public class AlignColumnGroupsCommand : DataSetCommandWithAffectedColumnGroupsBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeDataset/DeleteColumnGroupCommand.cs

    r9615 r16566  
    2525using HeuristicLab.DataImporter.Data.Model;
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.DataImporter.Command {
    29   [StorableClass]
     30  [StorableType("1000AC8E-0122-402A-93AE-2254D5E83832")]
    3031  [ViewableCommandInfoAttribute("Delete ColumnGroup", 1, ColumnGroupState.Active, "ColumnGroup Commands", Position = 1, MinActiveColumnGroups = 1)]
    3132  public class DeleteColumnGroupCommand : DataSetCommandWithAffectedColumnGroupsBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeDataset/MergeColumnGroupsCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("9E410556-FC8C-4731-9E5E-46A82F33BB38")]
    3233  [ViewableCommandInfo("Merge ColumnGroups", 2, ColumnGroupState.Active, "ColumnGroup Commands", Position = 5, MinActiveColumnGroups = 2)]
    3334  public class MergeColumnGroupsCommand : DataSetCommandWithAffectedColumnGroupsBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeDataset/MoveColumnGroupLeftCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 
     28using HEAL.Attic;
    2929
    3030namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     31  [StorableType("65E27E68-243A-4F1E-8DA0-DF53CAD75A8B")]
    3232  [ViewableCommandInfoAttribute("Move ColumnGroup left", 1, ColumnGroupState.Active, "ColumnGroup Commands", Position = 2)]
    3333  public class MoveColumnGroupLeftCommand : DataSetCommandWithAffectedColumnGroupsBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeDataset/MoveColumnGroupRightCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 
     28using HEAL.Attic;
    2929
    3030namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     31  [StorableType("E265CF35-EDBD-4FFB-B7A0-462C91D7C6A8")]
    3232  [ViewableCommandInfoAttribute("Move ColumnGroup right", 1, ColumnGroupState.Active, "ColumnGroup Commands", Position = 3)]
    3333  public class MoveColumnGroupRightCommand : DataSetCommandWithAffectedColumnGroupsBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeDataset/SplitColumnGroupCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("C619464C-C98C-4A14-92BF-C318041390E6")]
    3233  [ViewableCommandInfo("Split ColumnGroup", 1, ColumnGroupState.ColumnSelected, "ColumnGroup Commands", Position = 6, SelectedColumns = 2)]
    3334  public class SplitColumnGroupsCommand : ColumnGroupCommandWithAffectedColumnsBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/BoxCoxTransformationCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("0FD1FF55-7862-4D3E-A6E3-29E93E883781")]
    3132  [ViewableCommandInfoAttribute("Box-Cox Transformation", 1, ColumnGroupState.DoubleColumnSelected, "Change Values",
    3233  Position = 6, OptionsView = typeof(BoxCoxTransformationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/DeleteRowsWithGivenValueCommand.cs

    r9615 r16566  
    2929using HeuristicLab.DataImporter.Data.Model;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3132
    3233namespace HeuristicLab.DataImporter.Command {
    33   [StorableClass]
     34  [StorableType("051BA6B5-AE08-4DF3-A201-A708C563DAE0")]
    3435  [ViewableCommandInfoAttribute("Search and Remove Rows", 1, ColumnGroupState.ColumnSelected, "Change Values",
    3536    Position = 1, OptionsView = typeof(SearchWithMatchOperationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterCommandBase.cs

    r9615 r16566  
    2323using HeuristicLab.DataImporter.Data.Model;
    2424using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.DataImporter.Command {
    27   [StorableClass]
     28  [StorableType("FFC99285-3B91-4246-BFA3-5C4422C9FD7F")]
    2829  public abstract class FilterCommandBase : ColumnGroupCommandWithAffectedColumnsBase {
    2930    [StorableConstructor]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterMovingAverageCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("1AF80A5F-F102-4E74-B550-ABFE9C4E17EB")]
    3233  [ViewableCommandInfoAttribute("Moving Average", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 2,
    3334    OptionsView = typeof(FilterCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterMovingMedianCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("B1E2D0F2-A927-4D6E-952E-8CF349E0CB6E")]
    3132  [ViewableCommandInfoAttribute("Moving Median", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 3,
    3233   OptionsView = typeof(FilterCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterSavitzkyGolayCommand.cs

    r9615 r16566  
    2828using HeuristicLab.DataImporter.Data.Model;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3031
    3132namespace HeuristicLab.DataImporter.Command {
    32   [StorableClass]
     33  [StorableType("28A12839-2A01-45BB-836F-05A2E71BF672")]
    3334  [ViewableCommandInfoAttribute("Savitzky Golay", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 2,
    3435    OptionsView = typeof(FilterSavitzkyGolayCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/LinearTransformationCommand.cs

    r9615 r16566  
    2525using HeuristicLab.DataImporter.Data.Model;
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.DataImporter.Command {
    29   [StorableClass]
     30  [StorableType("424BD4DD-1055-4DFF-96B3-69FF9846BB0D")]
    3031  [ViewableCommandInfoAttribute("Linear Transformation", 1, ColumnGroupState.DoubleColumnSelected, "Change Values",
    3132  Position = 6, OptionsView = typeof(LinearTransformationCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/NormalDistributionScalingCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("44C1FF7C-84EA-4BBA-B8AE-17D8D1B5DC17")]
    3132  [ViewableCommandInfoAttribute("Scale to normal distribution", 1, ColumnGroupState.DoubleColumnSelected, "Change Values",
    3233   Position = 5, OptionsView = typeof(NormalDistributionCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/PercentalChangeCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("EE8DF207-4544-486C-99EF-503CE0A09B0A")]
    3132  [ViewableCommandInfoAttribute("Percental Change", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 3)]
    3233  public class PercentalChangeCommand : ColumnGroupCommandWithAffectedColumnsBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/ScalingBetweenMinAndMaxCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("3B0EE67E-6801-4029-92F1-AF41C5A2E521")]
    3132  [ViewableCommandInfoAttribute("Scaling between Min/Max", 1, ColumnGroupState.DoubleColumnSelected, "Change Values",
    3233 Position = 4, OptionsView = typeof(MinMaxCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/SearchAndReplaceCommand.cs

    r9615 r16566  
    2929using HeuristicLab.DataImporter.Data.Model;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3132
    3233namespace HeuristicLab.DataImporter.Command {
    33   [StorableClass]
     34  [StorableType("4C4A7701-D4BF-4E3E-9829-E9659A00AC6E")]
    3435  [ViewableCommandInfoAttribute("Search and Replace", 1, ColumnGroupState.ColumnSelected, "Change Values",
    3536  Position = 0, OptionsView = typeof(SearchAndReplaceCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/SearchCommandBase.cs

    r9615 r16566  
    2323using HeuristicLab.DataImporter.Data.Model;
    2424using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.DataImporter.Command {
    27   [StorableClass]
     28  [StorableType("845CC06D-15A6-43ED-A308-B49BBE909295")]
    2829  public abstract class SearchCommandBase : ColumnGroupCommandWithAffectedColumnsBase {
    2930    [StorableConstructor]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/SearchWithMatchOperationCommandBase.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
     
    3536  }
    3637
    37   [StorableClass]
     38  [StorableType("8207BA3B-BA78-454C-93B2-03E687CB8662")]
    3839  public abstract class SearchWithMatchOperationCommandBase : SearchCommandBase {
    3940    [StorableConstructor]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/HeuristicLab.DataImporter.Command.csproj

    r15690 r16566  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
     2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    33  <PropertyGroup>
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     
    1111    <RootNamespace>HeuristicLab.DataImporter.Command</RootNamespace>
    1212    <AssemblyName>HeuristicLab.DataImporter.Command-1.0</AssemblyName>
    13     <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
     13    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
    1515    <SignAssembly>true</SignAssembly>
     
    102102      <Private>False</Private>
    103103    </Reference>
     104    <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
     105      <HintPath>..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>
     106    </Reference>
     107    <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     108      <HintPath>..\packages\HEAL.Attic.1.0.0-pre01\lib\netstandard2.0\HEAL.Attic.dll</HintPath>
     109    </Reference>
    104110    <Reference Include="HeuristicLab.Persistence-3.3">
    105111      <HintPath>..\..\..\trunk\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
     
    115121    </Reference>
    116122    <Reference Include="System.Drawing" />
     123    <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
     124      <HintPath>..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath>
     125    </Reference>
    117126    <Reference Include="System.Windows.Forms" />
    118127    <Reference Include="System.Windows.Forms.DataVisualization" />
     
    274283  <ItemGroup>
    275284    <None Include="HeuristicLab.snk" />
     285    <None Include="packages.config" />
    276286    <None Include="Properties\AssemblyInfo.cs.frame" />
    277287  </ItemGroup>
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/DeleteColumnsWithMissingValuesThresholdCommand.cs

    r9615 r16566  
    2525using HeuristicLab.DataImporter.Data.Model;
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.DataImporter.Command {
    29   [StorableClass]
     30  [StorableType("EBD5BEAE-D8B0-42BB-B153-BFF2A58CA169")]
    3031  [ViewableCommandInfoAttribute("Delete Columns beneath Threshold", 1, ColumnGroupState.AnySelectedColumnContainsNull,
    3132    "Handle Missing Values", Position = 6, OptionsView = typeof(DeleteWithThresholdView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/DeleteRowsWithMissingValuesCommand.cs

    r9615 r16566  
    2626using HeuristicLab.DataImporter.Data.Model;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.DataImporter.Command {
    30   [StorableClass]
     31  [StorableType("1E214476-7156-42A0-A67D-DD5944F6D6AA")]
    3132  [ViewableCommandInfoAttribute("Delete Rows", 1, ColumnGroupState.AnySelectedColumnContainsNull,
    3233    "Handle Missing Values", Position = 4)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/DeleteRowsWithMissingValuesThresholdCommand.cs

    r9615 r16566  
    2828using HeuristicLab.DataImporter.Data.Model;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3031
    3132namespace HeuristicLab.DataImporter.Command {
    32   [StorableClass]
     33  [StorableType("DD29CB5F-0878-4CEC-B8C2-F2E7AA357210")]
    3334  [ViewableCommandInfoAttribute("Delete Rows beneath Threshold", 1, ColumnGroupState.Active,
    3435    "Handle Missing Values", Position = 5, OptionsView = typeof(DeleteWithThresholdView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/FillMissingValueCommandBase.cs

    r9615 r16566  
    2525using HeuristicLab.DataImporter.Data.Model;
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.DataImporter.Command {
    29   [StorableClass]
     30  [StorableType("74B80925-CEA4-4223-92C1-1542F0418F12")]
    3031  public abstract class FillMissingValueCommandBase : ColumnGroupCommandWithAffectedColumnsBase {
    3132    protected Dictionary<int, List<int>> nullValues;
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/FillMissingValuesWithLinearInterpolation.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("FAA97EE8-F435-4DA0-8334-0F9F98C63A55")]
    3233  [ViewableCommandInfoAttribute("Linear Interpolation", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnContainsNull,
    3334    "Handle Missing Values", Position = 2)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/FillMissingValuesWithMeanCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("87E0EA6E-EC45-492B-8F4B-B15B25A467E9")]
    3233  [ViewableCommandInfoAttribute("Mean", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnContainsNull,
    3334    "Handle Missing Values", Position = 0)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/FillMissingValuesWithMedianCommand.cs

    r9615 r16566  
    2727using HeuristicLab.DataImporter.Data.Model;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    2930
    3031namespace HeuristicLab.DataImporter.Command {
    31   [StorableClass]
     32  [StorableType("88285490-AE6E-4A45-9CAC-C4731D43D0D9")]
    3233  [ViewableCommandInfoAttribute("Median", 1, ColumnGroupState.DoubleColumnSelected | ColumnGroupState.AnySelectedColumnContainsNull,
    3334    "Handle Missing Values", Position = 1)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/FillMissingValuesWithPreviousValuesCommand.cs

    r9615 r16566  
    2828using HeuristicLab.DataImporter.Data.Model;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3031
    3132namespace HeuristicLab.DataImporter.Command {
    32   [StorableClass]
     33  [StorableType("44A149E1-5516-47E1-8AF7-56231997716B")]
    3334  [ViewableCommandInfoAttribute("Previous Value", 1, ColumnGroupState.AnySelectedColumnContainsNull, "Handle Missing Values", Position = 3)]
    3435  public class FillMissingValuesWithPreviousValuesCommand : FillMissingValueCommandBase {
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/ChangeDateTimeColumnToDoubleColumn.cs

    r9615 r16566  
    2929using HeuristicLab.DataImporter.Data.Model;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3132
    3233namespace HeuristicLab.DataImporter.Command {
    33   [StorableClass]
     34  [StorableType("F5336C3B-3975-4A36-B3AA-5867C9E18BE3")]
    3435  [ViewableCommandInfoAttribute("Change DateTimeColumn to DoubleColumn", 1, ColumnGroupState.DateTimeColumnSelected, "Time Series",
    3536Position = 5, OptionsView = typeof(ChangeDateTimeCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/DeleteNotEquidistantRowsCommand.cs

    r9615 r16566  
    2929using HeuristicLab.DataImporter.Data.Model;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3132
    3233namespace HeuristicLab.DataImporter.Command {
    33   [StorableClass]
     34  [StorableType("6849AAF1-2FD7-4755-84A6-DEDF44BDC97C")]
    3435  [ViewableCommandInfoAttribute("Delete not equidistant rows", 1, ColumnGroupState.Sorted, "Time Series",
    3536Position = 1, OptionsView = typeof(TimeBasedCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/EquidistantSamplingCommand.cs

    r9615 r16566  
    2929using HeuristicLab.DataImporter.Data.Model;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3132
    3233namespace HeuristicLab.DataImporter.Command {
    33   [StorableClass]
     34  [StorableType("68DF5755-DE5B-4DED-A73C-D234F503A428")]
    3435  [ViewableCommandInfoAttribute("Equidistant Sampling", 1, ColumnGroupState.Sorted, "Time Series",
    3536Position = 0, OptionsView = typeof(TimeBasedCommandView))]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/EquidistantTimeSeriesCommandBase.cs

    r9615 r16566  
    2525using HeuristicLab.DataImporter.Data.Model;
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.DataImporter.Command {
    29   [StorableClass]
     30  [StorableType("6D4E044B-59A0-4FD2-B588-B97EF423E8AB")]
    3031  public abstract class EquidistantTimeSeriesCommandBase : ColumnGroupCommandBase {
    3132    [StorableConstructor]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/InterpolateMissingValues.cs

    r9615 r16566  
    2828using HeuristicLab.DataImporter.Data.Model;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    30 
     30using HEAL.Attic;
    3131
    3232namespace HeuristicLab.DataImporter.Command {
    33   [StorableClass]
     33  [StorableType("3975A950-D715-48C8-91FB-C982DA6887CA")]
    3434  [ViewableCommandInfoAttribute("Interpolate Missing Values", 1, ColumnGroupState.Sorted | ColumnGroupState.DoubleColumnSelected, "Time Series",
    3535Position = 2)]
  • addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/TimeSeries/SetPartOfDateTimeCommand.cs

    r9615 r16566  
    2929using HeuristicLab.DataImporter.Data.Model;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3132
    3233namespace HeuristicLab.DataImporter.Command {
    33   [StorableClass]
     34  [StorableType("93774205-CCAE-425D-97C2-74A00CEBC5CC")]
    3435  [ViewableCommandInfoAttribute("Set Part of DateTime", 1, ColumnGroupState.DateTimeColumnSelected, "Time Series",
    3536Position = 2, SelectedColumns = 1, OptionsView = typeof(TimeBasedWithoutOffsetCommandView))]
Note: See TracChangeset for help on using the changeset viewer.