com.draagon.meta.mojo.GeneratorParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metaobjects-maven-plugin Show documentation
Show all versions of metaobjects-maven-plugin Show documentation
MetaObjects for Metadata-driven development - Maven Plugin
The newest version!
package com.draagon.meta.mojo;
import java.util.List;
import java.util.Map;
public class GeneratorParam {
private String classname = null;
private Map args = null;
private List filters = null;
private List scripts = null;
public GeneratorParam() {}
public String getClassname() {
return classname;
}
public void setClassname(String classname) {
this.classname = classname;
}
public Map getArgs() {
return args;
}
public void setArgs(Map args) {
this.args = args;
}
public List getFilters() {
return filters;
}
public void setFilters(String filter) {
this.filters = filters;
}
public List getScripts() {
return scripts;
}
public void setScripts(List scripts) {
this.scripts = scripts;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy