Uses of Interface
org.apache.tapestry.IBinding

Packages that use IBinding
org.apache.tapestry Tapestry is a comprehensive web application framework, written in Java. 
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.binding Implementations of IBinding
org.apache.tapestry.components Basic, fundamental components used to construct more complex components, or pages. 
org.apache.tapestry.contrib.inspector Implementation of the Tapestry Inspector, a specialized page used to dynamically introspect the construction of an application while it runs. 
org.apache.tapestry.contrib.tree.components

The tapestry contributed tree component. 

org.apache.tapestry.enhance Classes used for performing dynamic bytecode enhancement of component and page classes. 
org.apache.tapestry.form.translator Defines translator bindings used primarily in form component input translations. 
org.apache.tapestry.form.validator Form validation infrastructure. 
org.apache.tapestry.portlet.bindings Portlet related hivemind bindings. 
org.apache.tapestry.services.impl Service implementations. 
org.apache.tapestry.valid Components and classes that provide specialized, validating text fields. 
 

Uses of IBinding in org.apache.tapestry
 

Methods in org.apache.tapestry that return IBinding
 IBinding BindingException.getBinding()
           
 IBinding AbstractComponent.getBinding(String name)
          Returns the named binding, or null if it doesn't exist.
 IBinding IComponent.getBinding(String name)
          Returns the binding with the given name or null if not found.
 

Methods in org.apache.tapestry with parameters of type IBinding
static BindingException Tapestry.createNullBindingException(IBinding binding)
          Creates an exception indicating the binding value is null.
 void AbstractComponent.setBinding(String name, IBinding binding)
          Adds the binding with the given name, replacing any existing binding with that name.
 void IComponent.setBinding(String name, IBinding binding)
          Adds a binding to a container.
 

Constructors in org.apache.tapestry with parameters of type IBinding
BindingException(String message, IBinding binding)
           
BindingException(String message, IBinding binding, Throwable rootCause)
           
BindingException(String message, Object component, org.apache.hivemind.Location location, IBinding binding, Throwable rootCause)
           
 

Uses of IBinding in org.apache.tapestry.bean
 

Methods in org.apache.tapestry.bean that return IBinding
 IBinding Default.getBinding()
           
 

Methods in org.apache.tapestry.bean with parameters of type IBinding
 void Default.setBinding(IBinding value)
           
 

Uses of IBinding in org.apache.tapestry.binding
 

Classes in org.apache.tapestry.binding that implement IBinding
 class AbstractBinding
          Base class for IBindingimplementations.
 class AssetBinding
          A binding that is connected to an asset provided by a component.
 class BeanBinding
          Binding whose value is a named bean provided by a component.
 class ClientIdBinding
          An implementation of Tapestry IBinding that simplifies access to a component's clientId.
You can use this binding in order to safely find out the client-side id that was (or will be) generated for a given component.
 class ClientIdListBinding
          Binding that is specifcially used to bind against components of type IDynamicInvoker and only for the parameter name "updateComponents".
 class ComponentBinding
          A binding where the path is the id of a child component.
 class ExpressionBinding
          Implements a dynamic binding, based on evaluating an expression using an expression language.
 class HiveMindBinding
          A binding that accesses a HiveMind object.
 class ListenerMethodBinding
           
 class LiteralBinding
          Stores a static (invariant) string as the value.
 class MessageBinding
          A binding that connects directly to a localized string for a component.
 class MetaBinding
          Simple implementation that allows injection / lookup of meta properties.
 class StateBinding
          Binding used to efficiently query whether an application state object (visit, global and friends) exists without actually creating it (or creating a session).
 

Methods in org.apache.tapestry.binding that return IBinding
 IBinding BindingSource.createBinding(IComponent component, IParameterSpecification parameter, String description, String reference, String defaultBindingType, org.apache.hivemind.Location location)
          Just like BindingSource.createBinding(org.apache.tapestry.IComponent, String, String, String, org.apache.hivemind.Location) - except this version takes an additional parameter of type IParameterSpecification for those bindings that have a matching parameter.
 IBinding MetaBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
          Creates a new binding instance.
 IBinding BeanBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding ClientIdListBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
           
 IBinding BindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
          Creates a new binding instance.
 IBinding ComponentBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding ListenerBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding StateBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
           
 IBinding HiveMindBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
           
 IBinding AssetBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding OGNLBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding MessageBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding ClientIdBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding LiteralBindingFactory.createBinding(IComponent root, String description, String expression, org.apache.hivemind.Location location)
           
 IBinding BindingSource.createBinding(IComponent component, String description, String reference, String defaultBindingType, org.apache.hivemind.Location location)
          Creates a new binding.
 

Methods in org.apache.tapestry.binding with parameters of type IBinding
protected  BindingException AbstractBinding.createReadOnlyBindingException(IBinding binding)
           
 

Uses of IBinding in org.apache.tapestry.components
 

Methods in org.apache.tapestry.components that return IBinding
abstract  IBinding IfBean.getConditionValueBinding()
           
 

Uses of IBinding in org.apache.tapestry.contrib.inspector
 

Methods in org.apache.tapestry.contrib.inspector that return IBinding
 IBinding ShowSpecification.getBinding()
          Returns the IBinding corresponding to the value of the parameterName property.
 

Uses of IBinding in org.apache.tapestry.contrib.tree.components
 

Methods in org.apache.tapestry.contrib.tree.components that return IBinding
 IBinding TreeView.getSessionStateManagerBinding()
          Returns the sessionStateManagerBinding.
 IBinding TreeView.getSessionStoreManagerBinding()
          Returns the SessionStoreManagerBinding.
 IBinding TreeView.getTreeModelBinding()
          Returns the treeModelBinding.
 

Methods in org.apache.tapestry.contrib.tree.components with parameters of type IBinding
 void TreeView.setSessionStateManagerBinding(IBinding sessionStateManagerBinding)
          Sets the sessionStateManagerBinding.
 void TreeView.setSessionStoreManagerBinding(IBinding sessionStoreManagerBinding)
          Sets the SessionStoreManagerBinding.
 void TreeView.setTreeModelBinding(IBinding treeModelBinding)
          Sets the treeModelBinding.
 

Uses of IBinding in org.apache.tapestry.enhance
 

Methods in org.apache.tapestry.enhance that return IBinding
 IBinding InitialValueBindingCreator.createBinding(IComponent component)
           
 

Methods in org.apache.tapestry.enhance with parameters of type IBinding
static boolean EnhanceUtils.toBoolean(IBinding binding)
           
static byte EnhanceUtils.toByte(IBinding binding)
           
static char EnhanceUtils.toChar(IBinding binding)
           
static double EnhanceUtils.toDouble(IBinding binding)
           
static float EnhanceUtils.toFloat(IBinding binding)
           
static int EnhanceUtils.toInt(IBinding binding)
           
static long EnhanceUtils.toLong(IBinding binding)
           
static short EnhanceUtils.toShort(IBinding binding)
           
 

Uses of IBinding in org.apache.tapestry.form.translator
 

Classes in org.apache.tapestry.form.translator that implement IBinding
 class TranslatorBinding
          Implementation of IBinding that wraps around a Translator.
 

Methods in org.apache.tapestry.form.translator that return IBinding
 IBinding TranslatorBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
           
 

Uses of IBinding in org.apache.tapestry.form.validator
 

Classes in org.apache.tapestry.form.validator that implement IBinding
 class ValidatorsBinding
          Binding used to hold a list of Validators.
 

Methods in org.apache.tapestry.form.validator that return IBinding
 IBinding ValidatorsBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
           
 

Uses of IBinding in org.apache.tapestry.portlet.bindings
 

Classes in org.apache.tapestry.portlet.bindings that implement IBinding
 class UserAttributeBinding
          Allows access to a Portlet user attrbute.
 

Methods in org.apache.tapestry.portlet.bindings that return IBinding
 IBinding UserAttributeBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
          Interprets the path as the Portlet user attribute name.
 

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

Methods in org.apache.tapestry.services.impl that return IBinding
 IBinding BindingSourceImpl.createBinding(IComponent component, IParameterSpecification parameter, String description, String reference, String defaultBindingType, org.apache.hivemind.Location location)
           
 IBinding BindingSourceImpl.createBinding(IComponent component, String description, String reference, String defaultBindingType, org.apache.hivemind.Location location)
           
 

Uses of IBinding in org.apache.tapestry.valid
 

Classes in org.apache.tapestry.valid that implement IBinding
 class ValidatorBinding
          Implementation of IBinding that provides IValidator  instances based on a validator bean descriptor.
 

Methods in org.apache.tapestry.valid that return IBinding
 IBinding ValidatorBindingFactory.createBinding(IComponent root, String bindingDescription, String expression, org.apache.hivemind.Location location)
          Creates and returns a ValidatorBinding.
 



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