// use the field plugins to retrieve defaults if one's
// being used
if ((options.charAt(0) == '{')
&& (options.charAt(options.length() - 1) == '}')) {
FieldPlugin fieldPlugin = FieldPluginFactory
.getInstance().getPluginByID(
options.substring(1, options
.indexOf(':')));
if (fieldPlugin != null) {
try {
options = fieldPlugin.performSubstitution(
options, getProjectId());
} catch (FieldPluginException e) {
options = "{field plugin error: "
+ e.getMessage() + "}";
}