Class LiteralPropertyConduit
- java.lang.Object
-
- org.apache.tapestry5.beanmodel.internal.services.PropertyConduitDelegate
-
- org.apache.tapestry5.beanmodel.internal.services.LiteralPropertyConduit
-
- All Implemented Interfaces:
InternalPropertyConduit
,PropertyConduit
,PropertyConduit2
,AnnotationProvider
public class LiteralPropertyConduit extends PropertyConduitDelegate implements InternalPropertyConduit
A PropertyConduit for a literal value in an expression, such as a number, or "true", "false" or "null".
-
-
Constructor Summary
Constructors Constructor Description LiteralPropertyConduit(TypeCoercer typeCoercer, Class propertyType, AnnotationProvider annotationProvider, String description, Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
get(Object instance)
Reads the property from the instance.<T extends Annotation>
TgetAnnotation(Class<T> annotationClass)
Searches for the specified annotation, returning the matching annotation instance.Type
getPropertyGenericType()
Returns the generic type of the propertyString
getPropertyName()
Returns the name of the property read or updated by the conduit or null.Class
getPropertyType()
Returns the type of the property read or updated by the conduit.void
set(Object instance, Object value)
Changes the current value of the property.String
toString()
-
Methods inherited from class org.apache.tapestry5.beanmodel.internal.services.PropertyConduitDelegate
coerce, invert, range
-
-
-
-
Constructor Detail
-
LiteralPropertyConduit
public LiteralPropertyConduit(TypeCoercer typeCoercer, Class propertyType, AnnotationProvider annotationProvider, String description, Object value)
-
-
Method Detail
-
get
public Object get(Object instance)
Description copied from interface:PropertyConduit
Reads the property from the instance.- Specified by:
get
in interfacePropertyConduit
- Parameters:
instance
- object containing the property- Returns:
- the current value of the property
-
set
public void set(Object instance, Object value)
Description copied from interface:PropertyConduit
Changes the current value of the property.- Specified by:
set
in interfacePropertyConduit
- Parameters:
instance
- object containing the propertyvalue
- to change the property to
-
getPropertyType
public Class getPropertyType()
Description copied from interface:PropertyConduit
Returns the type of the property read or updated by the conduit.- Specified by:
getPropertyType
in interfacePropertyConduit
-
getPropertyGenericType
public Type getPropertyGenericType()
Description copied from interface:PropertyConduit2
Returns the generic type of the property- Specified by:
getPropertyGenericType
in interfacePropertyConduit2
- See Also:
Method.getGenericReturnType()
,Field.getGenericType()
-
getAnnotation
public <T extends Annotation> T getAnnotation(Class<T> annotationClass)
Description copied from interface:AnnotationProvider
Searches for the specified annotation, returning the matching annotation instance.- Specified by:
getAnnotation
in interfaceAnnotationProvider
- Parameters:
annotationClass
- used to select the annotation to return- Returns:
- the annotation, or null if not found
-
getPropertyName
public String getPropertyName()
Description copied from interface:InternalPropertyConduit
Returns the name of the property read or updated by the conduit or null. If the expression points to a property on a bean (e.g. user.name) this method returns the last property in the chain. Otherwise this method returnsnull
.- Specified by:
getPropertyName
in interfaceInternalPropertyConduit
- Returns:
- property name or
null
-
-