All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.component.Model.mustache Maven / Gradle / Ivy

Go to download

Web application allowing to generate maven or gradle project skeleton to speed up component development.

There is a newer version: 10.57.0
Show newest version
package {{package}};

{{#generic}}
import static java.util.Collections.emptySet;

{{/generic}}
import java.io.Serializable;

import java.util.Collection;
import java.util.Set;

// this is the pojo which will be used to represent your data
public class {{className}} implements {{^generic}}Serializable{{/generic}} {
{{^generic}}{{#structure}}
    private {{value.type}} {{value.name}};

    public {{value.type}} get{{value.methodName}}() {
        return {{value.name}};
    }

    public void set{{value.methodName}}(final {{value.type}} {{value.name}}) {
        this.{{value.name}} = {{value.name}};
    }
{{/structure}}{{/generic}}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy