Class AssetBinding
- java.lang.Object
-
- org.apache.tapestry5.ioc.BaseLocatable
-
- org.apache.tapestry5.internal.bindings.AbstractBinding
-
- org.apache.tapestry5.internal.bindings.AssetBinding
-
- All Implemented Interfaces:
Binding
,Binding2
,AnnotationProvider
,Locatable
public class AssetBinding extends AbstractBinding
-
-
Constructor Summary
Constructors Constructor Description AssetBinding(Location location, java.lang.String description, Asset asset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
get()
Reads the current value of the property (or other resource).java.lang.Class
getBindingType()
Returns the actual class, by invokingBinding.get()
.java.lang.String
toString()
-
Methods inherited from class org.apache.tapestry5.internal.bindings.AbstractBinding
getAnnotation, getBindingGenericType, isInvariant, set
-
Methods inherited from class org.apache.tapestry5.ioc.BaseLocatable
getLocation
-
-
-
-
Constructor Detail
-
AssetBinding
public AssetBinding(Location location, java.lang.String description, Asset asset)
-
-
Method Detail
-
getBindingType
public java.lang.Class getBindingType()
Description copied from class:AbstractBinding
Returns the actual class, by invokingBinding.get()
. Subclasses may override this method to work more efficiently (say, when the binding type is known statically).- Specified by:
getBindingType
in interfaceBinding
- Overrides:
getBindingType
in classAbstractBinding
-
get
public java.lang.Object get()
Description copied from interface:Binding
Reads the current value of the property (or other resource). When reading properties of objects that are primitive types, this will return an instance of the wrapper type. In some cases, a binding is read only and this method will throw a runtime exception.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-