Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1373


Ignore:
Timestamp:
03/19/09 17:56:11 (15 years ago)
Author:
epitzer
Message:

Simple GUI configuration for decomposers. (#506)

Location:
branches/New Persistence Exploration/Persistence
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/New Persistence Exploration/Persistence/Persistence.sln

    r1357 r1373  
    77EndProject
    88Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.PluginInfrastructure", "..\..\..\trunk\sources\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj", "{94186A6A-5176-4402-AE83-886557B53CCA}"
     9EndProject
     10Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence.GUI", "HeuristicLab.Persistence.GUI\HeuristicLab.Persistence.GUI.csproj", "{A9E282EA-180F-4233-B809-AEDF0787545C}"
    911EndProject
    1012Global
     
    3638    {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.ActiveCfg = Release|x86
    3739    {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.Build.0 = Release|x86
     40    {A9E282EA-180F-4233-B809-AEDF0787545C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     41    {A9E282EA-180F-4233-B809-AEDF0787545C}.Debug|Any CPU.Build.0 = Debug|Any CPU
     42    {A9E282EA-180F-4233-B809-AEDF0787545C}.Debug|x86.ActiveCfg = Debug|Any CPU
     43    {A9E282EA-180F-4233-B809-AEDF0787545C}.Release|Any CPU.ActiveCfg = Release|Any CPU
     44    {A9E282EA-180F-4233-B809-AEDF0787545C}.Release|Any CPU.Build.0 = Release|Any CPU
     45    {A9E282EA-180F-4233-B809-AEDF0787545C}.Release|x86.ActiveCfg = Release|Any CPU
    3846  EndGlobalSection
    3947  GlobalSection(SolutionProperties) = preSolution
  • branches/New Persistence Exploration/Persistence/Persistence/Core/PersistenceConfiguration.cs

    r1360 r1373  
    5151  public class ConfigurationService {
    5252
     53    private static ConfigurationService instance;
    5354    private readonly Dictionary<IFormat, List<IFormatter>> formatters;
    5455    private readonly List<IDecomposer> decomposers;
     56
     57    public Dictionary<IFormat, List<IFormatter>> AllFormatters {
     58      get {
     59        return formatters;
     60      }
     61    }
     62
     63    public List<IDecomposer> AllDecomposers {
     64      get {
     65        return decomposers;
     66      }
     67    }
    5568   
    56     private static ConfigurationService instance;
    5769    public static ConfigurationService Instance {
    5870      get {
Note: See TracChangeset for help on using the changeset viewer.