org.apache.tapestry.spec
Class BindingType

java.lang.Object
  extended by org.apache.tapestry.spec.BindingType

public final class BindingType
extends java.lang.Object

Defines the different types of bindings possible for a component. These are used in the IBindingSpecification and ultimately used to create an instance of IBinding.

Author:
Howard Lewis Ship

Field Summary
static BindingType INHERITED
           
static BindingType LISTENER
          Indicates a ListenerBinding, a specialized kind of binding that encapsulates a component listener as a script.
static BindingType PREFIXED
          Indicates that the binding value is a prefixed locator, ready for use with BindingSource.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PREFIXED

public static final BindingType PREFIXED
Indicates that the binding value is a prefixed locator, ready for use with BindingSource.


INHERITED

public static final BindingType INHERITED

LISTENER

public static final BindingType LISTENER
Indicates a ListenerBinding, a specialized kind of binding that encapsulates a component listener as a script. Uses a subclass of BindingSpecification,ListenerBindingSpecification. IListenerBindingSpecification.

Since:
3.0
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object