generators/app/templates/root/src/component/contribution.ztl
class <%= bundle %>.<%= titleLower %>.<%= titleOneWord %> extends Component {
/* Returns the current color of the box. */
String getColor() {*
return this.color;
*}
/* Sets the current color of the box. */
void setColor(/* New color */ String newColor) {*
this.color = newColor;
*}
}