- Timestamp:
- 12/31/18 08:14:11 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Content/IViewShortcut.cs
r16453 r16474 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.DataPreprocessing { 26 [StorableType("60755b48-d362-4957-94c5-cc770cc2a261")] 25 27 public interface IViewShortcut : IItem { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Content/PreprocessingChartContent.cs
r16462 r16474 35 35 [StorableType("7EDAFA6E-E4B1-4150-BB57-280A9F9E61D8")] 36 36 public class PreprocessingChartContent : PreprocessingContent, IViewShortcut { 37 [StorableType("d4c1c81a-f0c5-496f-8264-76b75572c0fc")] 37 38 public enum LegendOrder { 38 39 Alphabetically, -
branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Data/DataPreprocessingChangedEvent.cs
r16453 r16474 21 21 22 22 using System; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.DataPreprocessing { 26 [StorableType("f06da8c5-5c95-4e20-81c7-d264517d9981")] 25 27 public enum DataPreprocessingChangedEventType { 26 28 DeleteColumn, -
branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Data/IFilteredPreprocessingData.cs
r16453 r16474 21 21 22 22 using System; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.DataPreprocessing { 26 [StorableType("9f0c478b-6b6b-42a1-ad0a-6bc2769cd593")] 25 27 public interface IFilteredPreprocessingData : IPreprocessingData { 26 28 #region Filters -
branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Data/IPreprocessingData.cs
r16453 r16474 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Problems.DataAnalysis; 27 using HEAL.Fossil; 27 28 28 29 namespace HeuristicLab.DataPreprocessing { 30 [StorableType("1fd88253-ae07-415f-81df-5b73c61fd495")] 29 31 public interface IPreprocessingData : INamedItem { 30 32 #region Cells -
branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Filter/ComparisonFilter.cs
r16462 r16474 30 30 namespace HeuristicLab.DataPreprocessing.Filter { 31 31 [Item("ComparisonFilter", "A filter which compares the member of the preprocessing data with the constraint data.")] 32 [StorableType("6529899a-987c-48b3-ba14-154d25a7cc8e")] 32 33 public class ComparisonFilter : ComparisonConstraint, IFilter { 33 34 public override string ItemName { -
branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Filter/IFilter.cs
r16453 r16474 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.DataPreprocessing.Filter { 26 [StorableType("bf5dabf7-e795-493c-b2d0-23051dfb3d2f")] 25 27 public interface IFilter : IConstraint { 26 28 new bool[] Check();
Note: See TracChangeset
for help on using the changeset viewer.