[java] Allow setting test folder

To keep consistency between `sourceFolder` and `testFolder` access
This commit is contained in:
Diego López León 2016-10-18 09:28:30 -03:00 committed by GitHub
parent f3456007c6
commit c26833fd64

View File

@ -876,6 +876,10 @@ public abstract class AbstractJavaCodegen extends DefaultCodegen implements Code
this.sourceFolder = sourceFolder;
}
public void setTestFolder(String testFolder) {
this.testFolder = testFolder;
}
public void setLocalVariablePrefix(String localVariablePrefix) {
this.localVariablePrefix = localVariablePrefix;
}