org.apache.tapestry5.services
public interface: BindingFactory [javadoc |
source]
All Known Implementing Classes:
BlockBindingFactory, PropBindingFactory, ValidateBindingFactory, AssetBindingFactory, NullFieldStrategyBindingFactory, MessageBindingFactory, RenderVariableBindingFactory, ComponentBindingFactory, LiteralBindingFactory, TranslateBindingFactory
Creates a binding of a particular type. This is usually invoked from the
org.apache.tapestry5.services.BindingSource service.
Method from org.apache.tapestry5.services.BindingFactory Summary: |
---|
newBinding |
Method from org.apache.tapestry5.services.BindingFactory Detail: |
public Binding newBinding(String description,
ComponentResources container,
ComponentResources component,
String expression,
Location location)
Creates a new binding instance.
The binding represents a connection between the container and the component (the component is usually the child
of the component, though in a few cases, it is the component itself). In most cases, the expression is evaluated
in terms of the resources of the container and the component is ignored. |