com.primix.tapestry.spec
Class BindingType

java.lang.Object
  |
  +--com.primix.tapestry.util.Enum
        |
        +--com.primix.tapestry.spec.BindingType
All Implemented Interfaces:
java.io.Serializable

public final class BindingType
extends Enum

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

Version:
$Id: BindingType.java,v 1.5 2001/05/02 14:15:16 hship Exp $
Author:
Howard Ship
See Also:
Serialized Form

Field Summary
static BindingType DYNAMIC
          Indicates a standard PropertyBinding.
static BindingType FIELD
          Indicates a FieldBinding.
static BindingType INHERITED
          Indicates that an existing binding (from the container) will be re-used.
static BindingType STATIC
          Indicates a StaticBinding.
 
Methods inherited from class com.primix.tapestry.util.Enum
getEnumerationId, getSingleton, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

STATIC

public static final BindingType STATIC
Indicates a StaticBinding.

DYNAMIC

public static final BindingType DYNAMIC
Indicates a standard PropertyBinding.

INHERITED

public static final BindingType INHERITED
Indicates that an existing binding (from the container) will be re-used.

FIELD

public static final BindingType FIELD
Indicates a FieldBinding.