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

com.diamondfsd.codegen.vo.GeneratorConfig Maven / Gradle / Ivy

Go to download

simple code generate maven plugin. Template rendering through Java and freemarker.

There is a newer version: 1.1.1
Show newest version
package com.diamondfsd.codegen.vo;


public class GeneratorConfig {
    private String targetPath;

    private String baseDir;

    public String getBaseDir() {
        return baseDir;
    }

    public void setBaseDir(String baseDir) {
        this.baseDir = baseDir;
    }

    public String getTargetPath() {
        return targetPath;
    }

    public void setTargetPath(String targetPath) {
        this.targetPath = targetPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy