- Timestamp:
- 01/28/19 14:00:42 (6 years ago)
- Location:
- addons/HeuristicLab.DataImporter
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.DataImporter
- Property svn:ignore
-
old new 2 2 _ReSharper.HeuristicLab.DataImporter 3 3 *.user 4 packages
-
- Property svn:ignore
-
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/BoxCoxTransformationCommand.cs
r9615 r16566 26 26 using HeuristicLab.DataImporter.Data.Model; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.DataImporter.Command { 30 [Storable Class]31 [StorableType("0FD1FF55-7862-4D3E-A6E3-29E93E883781")] 31 32 [ViewableCommandInfoAttribute("Box-Cox Transformation", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", 32 33 Position = 6, OptionsView = typeof(BoxCoxTransformationCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/DeleteRowsWithGivenValueCommand.cs
r9615 r16566 29 29 using HeuristicLab.DataImporter.Data.Model; 30 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 using HEAL.Attic; 31 32 32 33 namespace HeuristicLab.DataImporter.Command { 33 [Storable Class]34 [StorableType("051BA6B5-AE08-4DF3-A201-A708C563DAE0")] 34 35 [ViewableCommandInfoAttribute("Search and Remove Rows", 1, ColumnGroupState.ColumnSelected, "Change Values", 35 36 Position = 1, OptionsView = typeof(SearchWithMatchOperationCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterCommandBase.cs
r9615 r16566 23 23 using HeuristicLab.DataImporter.Data.Model; 24 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.DataImporter.Command { 27 [Storable Class]28 [StorableType("FFC99285-3B91-4246-BFA3-5C4422C9FD7F")] 28 29 public abstract class FilterCommandBase : ColumnGroupCommandWithAffectedColumnsBase { 29 30 [StorableConstructor] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterMovingAverageCommand.cs
r9615 r16566 27 27 using HeuristicLab.DataImporter.Data.Model; 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 using HEAL.Attic; 29 30 30 31 namespace HeuristicLab.DataImporter.Command { 31 [Storable Class]32 [StorableType("1AF80A5F-F102-4E74-B550-ABFE9C4E17EB")] 32 33 [ViewableCommandInfoAttribute("Moving Average", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 2, 33 34 OptionsView = typeof(FilterCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterMovingMedianCommand.cs
r9615 r16566 26 26 using HeuristicLab.DataImporter.Data.Model; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.DataImporter.Command { 30 [Storable Class]31 [StorableType("B1E2D0F2-A927-4D6E-952E-8CF349E0CB6E")] 31 32 [ViewableCommandInfoAttribute("Moving Median", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 3, 32 33 OptionsView = typeof(FilterCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterSavitzkyGolayCommand.cs
r9615 r16566 28 28 using HeuristicLab.DataImporter.Data.Model; 29 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 using HEAL.Attic; 30 31 31 32 namespace HeuristicLab.DataImporter.Command { 32 [Storable Class]33 [StorableType("28A12839-2A01-45BB-836F-05A2E71BF672")] 33 34 [ViewableCommandInfoAttribute("Savitzky Golay", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 2, 34 35 OptionsView = typeof(FilterSavitzkyGolayCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/LinearTransformationCommand.cs
r9615 r16566 25 25 using HeuristicLab.DataImporter.Data.Model; 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HEAL.Attic; 27 28 28 29 namespace HeuristicLab.DataImporter.Command { 29 [Storable Class]30 [StorableType("424BD4DD-1055-4DFF-96B3-69FF9846BB0D")] 30 31 [ViewableCommandInfoAttribute("Linear Transformation", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", 31 32 Position = 6, OptionsView = typeof(LinearTransformationCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/NormalDistributionScalingCommand.cs
r9615 r16566 26 26 using HeuristicLab.DataImporter.Data.Model; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.DataImporter.Command { 30 [Storable Class]31 [StorableType("44C1FF7C-84EA-4BBA-B8AE-17D8D1B5DC17")] 31 32 [ViewableCommandInfoAttribute("Scale to normal distribution", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", 32 33 Position = 5, OptionsView = typeof(NormalDistributionCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/PercentalChangeCommand.cs
r9615 r16566 26 26 using HeuristicLab.DataImporter.Data.Model; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.DataImporter.Command { 30 [Storable Class]31 [StorableType("EE8DF207-4544-486C-99EF-503CE0A09B0A")] 31 32 [ViewableCommandInfoAttribute("Percental Change", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", Position = 3)] 32 33 public class PercentalChangeCommand : ColumnGroupCommandWithAffectedColumnsBase { -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/ScalingBetweenMinAndMaxCommand.cs
r9615 r16566 26 26 using HeuristicLab.DataImporter.Data.Model; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.DataImporter.Command { 30 [Storable Class]31 [StorableType("3B0EE67E-6801-4029-92F1-AF41C5A2E521")] 31 32 [ViewableCommandInfoAttribute("Scaling between Min/Max", 1, ColumnGroupState.DoubleColumnSelected, "Change Values", 32 33 Position = 4, OptionsView = typeof(MinMaxCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/SearchAndReplaceCommand.cs
r9615 r16566 29 29 using HeuristicLab.DataImporter.Data.Model; 30 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 using HEAL.Attic; 31 32 32 33 namespace HeuristicLab.DataImporter.Command { 33 [Storable Class]34 [StorableType("4C4A7701-D4BF-4E3E-9829-E9659A00AC6E")] 34 35 [ViewableCommandInfoAttribute("Search and Replace", 1, ColumnGroupState.ColumnSelected, "Change Values", 35 36 Position = 0, OptionsView = typeof(SearchAndReplaceCommandView))] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/SearchCommandBase.cs
r9615 r16566 23 23 using HeuristicLab.DataImporter.Data.Model; 24 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.DataImporter.Command { 27 [Storable Class]28 [StorableType("845CC06D-15A6-43ED-A308-B49BBE909295")] 28 29 public abstract class SearchCommandBase : ColumnGroupCommandWithAffectedColumnsBase { 29 30 [StorableConstructor] -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/SearchWithMatchOperationCommandBase.cs
r9615 r16566 26 26 using HeuristicLab.DataImporter.Data.Model; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.DataImporter.Command { … … 35 36 } 36 37 37 [Storable Class]38 [StorableType("8207BA3B-BA78-454C-93B2-03E687CB8662")] 38 39 public abstract class SearchWithMatchOperationCommandBase : SearchCommandBase { 39 40 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.