Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/11 23:45:47 (13 years ago)
Author:
mkommend
Message:

#1418: Added NonDiscoverableType attribute to outdated algorithms and problems.

Location:
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.3/DataAnalysisProblem.cs

    r5625 r5802  
    2828using HeuristicLab.Parameters;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.PluginInfrastructure;
    3031
    3132namespace HeuristicLab.Problems.DataAnalysis {
    3233  [Item("Data Analysis Problem", "Represents a data analysis problem.")]
    3334  [StorableClass]
     35  [NonDiscoverableType]
    3436  public class DataAnalysisProblem : ParameterizedNamedItem, IDataAnalysisProblem, IStorableContent {
    3537    private const string DataAnalysisProblemDataParameterName = "DataAnalysisProblemData";
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.3/DataAnalysisProblemData.cs

    r5445 r5802  
    2929using HeuristicLab.Parameters;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HeuristicLab.PluginInfrastructure;
    3132
    3233namespace HeuristicLab.Problems.DataAnalysis {
    3334  [Item("DataAnalysisProblemData", "Represents an item containing all data defining a data analysis problem.")]
    3435  [StorableClass]
     36  [NonDiscoverableType]
    3537  public class DataAnalysisProblemData : ParameterizedNamedItem, IStorableContent {
    3638    protected bool suppressEvents = false;
Note: See TracChangeset for help on using the changeset viewer.