Uses of Interface
cz.cuni.versatile.api.ValueProvider

Packages that use ValueProvider
cz.cuni.versatile.api The key elements of the Versatile API.  
cz.cuni.versatile.core This package contains the default implementations of some essential Versatile concepts.  
 

Uses of ValueProvider in cz.cuni.versatile.api
 

Methods in cz.cuni.versatile.api that return ValueProvider
 ValueProvider ValueProvider.getDefault()
          Returns the next ValueProvider in the chain.
 ValueProvider DeliveryContext.getValueProvider(Property prop)
          Returns the ValueProvider for the specified Property.
 

Methods in cz.cuni.versatile.api with parameters of type ValueProvider
 void DeliveryContext.registerProperty(Property prop, ValueProvider vp)
          Registers a leaf property and its associated value provider.
 

Uses of ValueProvider in cz.cuni.versatile.core
 

Classes in cz.cuni.versatile.core that implement ValueProvider
 class AbstractValueProvider
          The default implementation of the ValueProvider interface.
 class ConstantVP
          ConstantVP stands for Constant Value Provider.
 

Fields in cz.cuni.versatile.core declared as ValueProvider
protected  ValueProvider AbstractValueProvider.defaultProvider
          Next-in-the-chain value provider (default).
 

Methods in cz.cuni.versatile.core that return ValueProvider
 ValueProvider AbstractValueProvider.getDefault()
           
 

Constructors in cz.cuni.versatile.core with parameters of type ValueProvider
AbstractValueProvider(java.lang.String attrName, ValueProvider defaultValue)
          Public Constructor