stbutler11/generator-design-studio

View on GitHub
generators/app/templates/root/src/component/contribution.ztl

Summary

Maintainability
Test Coverage
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;
    *}
}