Interface PropertySupport
-
- All Known Implementing Classes:
ActionTaskTag
,AndEventFilterTag
,ChainedEventFilterTag
,ComponentHandlerTag
,ConverterTag
,EventFilterTag
,EventRegistrationTag
,FormControllerListenerTag
,FormControllerTag
,OrEventFilterTag
,PopupHandlerTag
,PropertiesTag
,TableEditorValidationHandlerTag
,TableSelectionHandlerTag
,TransformerBaseTag
,TransformerTag
,UseBeanBaseTag
,ValidatorBaseTag
,ValidatorsTag
,ValidatorTag
,WindowControllerTag
public interface PropertySupport
Definition of an interface to be implemented by tags that support setting of properties.
This interface is evaluated by tags for setting properties. Such tags can be placed inside the body of tags implementing the
PropertySupport
interface. Through the method defined here the value of a property can be set. It is up to a concrete implementation how the property is further processed.- Version:
- $Id: PropertySupport.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setProperty(String name, Object value)
Sets the specified property.
-
-
-
Method Detail
-
setProperty
void setProperty(String name, Object value)
Sets the specified property. This method will be called by one of the tags that allow the definition of properties. An implementation can choose how this property will be handled.- Parameters:
name
- the name of the propertyvalue
- the value of the property
-
-