Uses of Interface
org.apache.tapestry.bean.IBeanInitializer

Packages that use IBeanInitializer
org.apache.tapestry.bean Contains useful helper beans, an implementation of the IBeanProvider interface, and several interfaces and classes related to initializing helper beans. 
org.apache.tapestry.spec Classes to represent application and component specifications. 
 

Uses of IBeanInitializer in org.apache.tapestry.bean
 

Classes in org.apache.tapestry.bean that implement IBeanInitializer
 class AbstractBeanInitializer
          Base class for initializing a property of a JavaBean.
 class BindingBeanInitializer
          An IBeanInitializer  implementation that uses an IBinding  to obtain the value which will be assigned to the bean property.
 class ExpressionBeanInitializer
          Initializes a helper bean property from an OGNL expression (relative to the bean's IComponent).
 class FieldBeanInitializer
          Initializes a bean with the value of a public static field.
 class LightweightBeanInitializer
          Performs "lightweight" initialization of a bean; this is based on a term (and code) from HiveMind, where the settings for a bean's properties are expressed as a single string.
 class MessageBeanInitializer
          A bean initializer that uses a localized string from the containing component.
 class StaticBeanInitializer
          Initializes a bean with a static value.
 

Uses of IBeanInitializer in org.apache.tapestry.spec
 

Methods in org.apache.tapestry.spec that return IBeanInitializer
 IBeanInitializer SpecFactory.createExpressionBeanInitializer(ExpressionEvaluator evaluator)
          Creates a new instance of ExpressionBeanInitializer.
 IBeanInitializer SpecFactory.createMessageBeanInitializer()
          Returns a new instance of MessageBeanInitializer.
 

Methods in org.apache.tapestry.spec with parameters of type IBeanInitializer
 void IBeanSpecification.addInitializer(IBeanInitializer initializer)
           
 void BeanSpecification.addInitializer(IBeanInitializer initializer)