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

jdbc-generator.JdbcCatalog.hbs Maven / Gradle / Ivy

The newest version!
{{#catalogPackage}}
package {{.}};
{{/catalogPackage}}

{{#catalogImports}}
import {{.}};
{{/catalogImports}}

public class {{catalogClassName}} {

    /* ========== {{tagTables}} ========== */
    {{#tables}}
    public {{tableClassName}} {{tableObjectName}};
    {{/tables}}

    /* ========== {{tagInstance}} ========== */
    public {{catalogClassName}}(DataSource dataSource) {
        {{#tables}}
        this.{{tableObjectName}} = new {{tableClassName}}(dataSource);
        {{/tables}}
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy