Free cookie consent management tool by TermsFeed Policy Generator

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

Simple GUI configuration for decomposers. (#506)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.