Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Accessing Values

Simple expressions like ${relationship.actualDestination.classNameWithDefault} work as long as the methods use the is... or get... prefix from JavaBeans. For other methods, use () to indicate that it is a regular method name: ${attribute.name.toUpperCase()}.

Number vs Integer or Long

If you prefer your classes to be generated with Number instead of Integer or Long, add this macro to the start of your template:

Code Block
#macro( genericClass $specificClass )
#if($specificClass == "Integer" || $specificClass == "Long")Number#else$specificClass#end
#end

And use it like this:

Code Block
public #genericClass($attribute.javaClassName) ${attribute.name}() {
    return (#genericClass($attribute.javaClassName)) storedValueForKey("$attribute.name");
}

public void set${attribute.capitalizedName}(#genericClass($attribute.javaClassName) value) 
{
    takeStoredValueForKey(value, "$attribute.name");
}