* @param params Map of configuration parameters
* @since VelocityTools 1.3
*/
public void configure(Map params)
{
ValueParser parser = new ValueParser(params);
Boolean selfAbsolute = parser.getBoolean(SELF_ABSOLUTE_KEY);
if (selfAbsolute != null)
{
setSelfAbsolute(selfAbsolute.booleanValue());
}
Boolean selfParams = parser.getBoolean(SELF_INCLUDE_PARAMETERS_KEY);
if (selfParams != null)
{
setSelfIncludeParameters(selfParams.booleanValue());
}
Boolean autoIgnoreParams = parser.getBoolean(AUTO_IGNORE_PARAMETERS_KEY);
if (autoIgnoreParams != null)
{
setAutoIgnoreParameters(autoIgnoreParams.booleanValue());
}
}