Uses of Interface
org.weborganic.furi.VariableResolver

Uses of VariableResolver in org.weborganic.furi
 

Classes in org.weborganic.furi that implement VariableResolver
 class VariableResolverList
          A variable resolver using a list to resolve values.
 class VariableResolverMap<V>
          A variable resolver backed by a values mapped to objects.
 

Methods in org.weborganic.furi that return VariableResolver
 VariableResolver VariableBinder.getResolver(String name)
          Returns the resolver used for the variable of the specified name.
 VariableResolver VariableBinder.getResolver(String name, VariableType type)
          Returns the resolver used for the variable of the specified name or type.
 VariableResolver VariableBinder.getResolver(VariableType type)
          Returns the resolver used for the variable of the specified type.
 

Methods in org.weborganic.furi with parameters of type VariableResolver
 void VariableBinder.bind(String name, VariableResolver resolver)
          Deprecated. use #bindName() or #bindType() instead
 void VariableBinder.bindName(String name, VariableResolver resolver)
          Binds the variables with the specified name to the specified resolver.
 void VariableBinder.bindType(String type, VariableResolver resolver)
          Binds the variables with the specified name to the specified resolver.