Config

Implemented in class xdoclet.tagshandler.ConfigTagsHandler.

Block Tags:

ifHasConfigParam (block template)

Evaluates the body if config parameter specified is not null.

paramName The config parameter name, it's a parameter settable from within build file.

forAllConfigParameters (block template)

Evaluate the body for all configuration parameters with the name paramName. It's basically used for java.util.ArrayList-based parameter types, and the body is evaluated for all items of the ArrayList.

paramName The config parameter name, it's a parameter settable from within build file.

ifConfigParamGreaterOrEquals (block template)

Evaluate the body if the value of the configuration parameter is greater or equal to value.

paramName The config parameter name, it's a parameter settable from within build file.

value The desired value.

ifConfigParamNotGreaterOrEquals (block template)

Evaluate the body if the value of the configuration parameter is not greater or equal to value.

paramName The config parameter name, it's a parameter settable from within build file.

value The desired value.

ifConfigParamEquals (block template)

Evaluate the body if the value of the configuration parameter equals value.

paramName The config parameter name, it's a parameter settable from within build file.

value The desired value.

ifConfigParamNotEquals (block template)

Evaluate the body if the value of the configuration parameter doesn't equal value.

paramName The config parameter name, it's a parameter settable from within build file.

value The desired value.

Content templates:

configParameterValue (content template)

Returns the values of a configuration parameter with the name paramName.

paramName The config parameter name, it's a parameter settable from within build file.