org.apache.tapestry.engine
Interface IPropertySource

All Known Subinterfaces:
INamespace
All Known Implementing Classes:
InitializationParameterHolderPropertySource, Namespace, PropertyHolderPropertySource, ResourceBundlePropertySource, SymbolSourcesPropertySource, SystemPropertiesPropertySource

public interface IPropertySource

A source for configuration properties.

Since:
2.3
Author:
Howard Lewis Ship

Method Summary
 String getPropertyValue(String propertyName)
          Returns the value for a given property, or null if the source does not provide a value for the named property.
 

Method Detail

getPropertyValue

String getPropertyValue(String propertyName)
Returns the value for a given property, or null if the source does not provide a value for the named property. Implementations of IPropertySource may use delegation to resolve the value (that is, if one property source returns null, it may forward the request to another source).

Parameters:
propertyName - Name of the property to get.
Returns:
Value of property or null if none found.


Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.