Interface PropertiesSupport
-
- All Known Implementing Classes:
TransformerBaseTag
,TransformerTag
,ValidatorBaseTag
,ValidatorsTag
,ValidatorTag
public interface PropertiesSupport
Definition of an interface to be implemented by tags that support a properties object.
This interface is evaluated by the
tag handler class. Through the single method defined here a map with properties can be set. The idea is that thePropertiesTag
PropertiesTag
creates such a map. By tags in the body of thePropertiesTag
the map is populated. Finally the resulting map is passed to a target implementing this interface.- Version:
- $Id: PropertiesSupport.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
setProperties(Map<String,Object> props)
Sets a map with properties.
-