Uses of Interface
org.apache.tapestry.engine.IPropertySource

Packages that use IPropertySource
org.apache.tapestry Tapestry is a comprehensive web application framework, written in Java. 
org.apache.tapestry.asset Implementations of IAsset, as well as the AssetExternalizer, used to handle private assets. 
org.apache.tapestry.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl   
org.apache.tapestry.util A general set of resuable classes and utilities for creating Internet and XML applications. 
 

Uses of IPropertySource in org.apache.tapestry
 

Methods in org.apache.tapestry that return IPropertySource
 IPropertySource IEngine.getPropertySource()
          Deprecated. To be removed in 3.2.
 

Uses of IPropertySource in org.apache.tapestry.asset
 

Methods in org.apache.tapestry.asset with parameters of type IPropertySource
 void AssetExternalizerImpl.setPropertySource(IPropertySource propertySource)
          since 3.1
 

Uses of IPropertySource in org.apache.tapestry.engine
 

Methods in org.apache.tapestry.engine that return IPropertySource
 IPropertySource AbstractEngine.getPropertySource()
           
 

Uses of IPropertySource in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services that return IPropertySource
 IPropertySource Infrastructure.getApplicationPropertySource()
          Returns an IPropertySourceconfigured to search the application specification, etc.
 IPropertySource Infrastructure.getGlobalPropertySource()
          Returns an IPropertySource configured to search the servlet, servlet context, and factory defaults.
 

Uses of IPropertySource in org.apache.tapestry.services.impl
 

Classes in org.apache.tapestry.services.impl that implement IPropertySource
 class ApplicationSpecificationPropertySource
          Obtains meta-data properties from the IApplicationSpecification.
 class ServletContextPropertySource
          Searches for property values in the servlet context's init parameters.
 class ServletPropertySource
          Obtains property values from ServletConfig for the application servlet.
 class SymbolSourcesPropertySource
          Property source that bridges to HiveMind Symbol Sources.
 

Methods in org.apache.tapestry.services.impl that return IPropertySource
 IPropertySource InfrastructureImpl.getApplicationPropertySource()
           
 IPropertySource InfrastructureImpl.getGlobalPropertySource()
           
 

Methods in org.apache.tapestry.services.impl with parameters of type IPropertySource
 void PropertyObjectProvider.setSource(IPropertySource source)
           
 void InfrastructureImpl.setApplicationPropertySource(IPropertySource source)
           
 void InfrastructureImpl.setGlobalPropertySource(IPropertySource globalPropertySource)
           
 void ComponentPropertySourceImpl.setGlobalProperties(IPropertySource globalProperties)
           
 

Constructors in org.apache.tapestry.services.impl with parameters of type IPropertySource
LocalizedPropertySource(IPropertySource source)
           
 

Uses of IPropertySource in org.apache.tapestry.util
 

Classes in org.apache.tapestry.util that implement IPropertySource
 class DelegatingPropertySource
          An implementation of IPropertySource that delegates to a list of other implementations.
 class LocalizedPropertySource
          A PropertySource extending the DelegatingPropertySources and adding the capability of searching for localized versions of the desired property.
 class PropertyHolderPropertySource
          Implements the IPropertySource interface for instances that implement IPropertyHolder.
 class ResourceBundlePropertySource
          A property source that is based on a ResourceBundle.
 class SystemPropertiesPropertySource
          Obtain properties from JVM system properties.
 

Methods in org.apache.tapestry.util that return IPropertySource
static IPropertySource SystemPropertiesPropertySource.getInstance()
           
 

Methods in org.apache.tapestry.util with parameters of type IPropertySource
 void DelegatingPropertySource.addSource(IPropertySource source)
          Adds another source to the list of delegate property sources.
 

Constructors in org.apache.tapestry.util with parameters of type IPropertySource
LocalizedPropertySource(IPropertySource delegate)
          Creates a LocalizedPropertySource with the default locale and the provided delegate
LocalizedPropertySource(java.util.Locale locale, IPropertySource delegate)
          Creates a LocalizedPropertySource with the provided locale and delegate
DelegatingPropertySource(IPropertySource delegate)