Uses of Interface
com.tomgibara.pronto.config.ConfigSource

Packages that use ConfigSource
com.tomgibara.pronto.config   
com.tomgibara.pronto.config.impl   
com.tomgibara.pronto.config.source   
 

Uses of ConfigSource in com.tomgibara.pronto.config
 

Methods in com.tomgibara.pronto.config that return ConfigSource
 ConfigSource Config.getSource()
           
 

Methods in com.tomgibara.pronto.config with parameters of type ConfigSource
abstract  Config ConfigFactory.newConfig(ConfigSource source, java.lang.ClassLoader classLoader)
          Constructs a new config.
 

Uses of ConfigSource in com.tomgibara.pronto.config.impl
 

Methods in com.tomgibara.pronto.config.impl with parameters of type ConfigSource
 Config ConfigFactoryImpl.newConfig(ConfigSource source, java.lang.ClassLoader classLoader)
          Returns a new ConfigImpl instance.
 

Uses of ConfigSource in com.tomgibara.pronto.config.source
 

Classes in com.tomgibara.pronto.config.source that implement ConfigSource
 class CachingConfigSource
          Instances of this class wrap other ConfigSource instances and cache the values they return.
 class CompositeConfigSource
           This class provides a simple way of combining the properties from two configuration sources into one.
 class FileConfigSource
          Parses a file into configuration properties.
 class MapConfigSource
           Encapsulates a Map as a ConfigSource.
 class PreferencesConfigSource
          A configuration source which draws its properties from a Preferences node.
 class StringConfigSource
          Instances of this class convert a single string into a set of properties as follows: 1) The string is split at each semicolon.
 class SynchronizedConfigSource
          Instances of this class wrap other ConfigSource instances and ensure that its ConfigSource methods are safe for concurrent access.
 class SystemConfigSource
          Enacapsulates the system properties as a ConfigSource.
 class URLConfigSource
          Accesses a (possibly) remote resource that is been specified via a URL and parses it into a collection of property values.
 

Methods in com.tomgibara.pronto.config.source that return ConfigSource
 ConfigSource CompositeConfigSource.getPrimarySource()
           
 ConfigSource CompositeConfigSource.getSecondarySource()
           
 ConfigSource CachingConfigSource.getSource()
          Returns the ConfigSource which is being cached by this object.
 ConfigSource SynchronizedConfigSource.getSource()
          The ConfigSource object which is being synchronized by this object.
 

Constructors in com.tomgibara.pronto.config.source with parameters of type ConfigSource
CachingConfigSource(ConfigSource source, long ttl)
          Creates new a source which caches responses from another ConfigSource.
CompositeConfigSource(ConfigSource primarySource, ConfigSource secondarySource)
          Constructs a new composite configuration source from two existing sources.
SynchronizedConfigSource(ConfigSource source)
          Constructs a new ConfigSource which synchronizes access to the methods of another ConfigSource.
 



Copyright © 2006-2007 Tom Gibara. All Rights Reserved.