The following document contains the results of PMD's CPD
| File | Line |
|---|---|
| net\sf\mavenizer\cli\commands\Analyse.java | 154 |
| net\sf\mavenizer\cli\commands\Generate.java | 107 |
}
/**
* @return Returns the workDir.
*/
public File getWorkDir() {
if (workDir == null) {
workDir = new File(getRootDir(), "work");
}
return workDir;
}
/**
* @param workDir
* The workDir to set.
*/
public void setWorkDir(File workDir) {
this.workDir = workDir;
}
/**
* @return Returns the tempDir.
*/
public File getTempDir() {
if (tempDir == null) {
tempDir = new File(getRootDir(), "temp");
}
return tempDir;
}
/**
* @param tempDir
* The tempDir to set.
*/
public void setTempDir(File tempDir) {
this.tempDir = tempDir;
}
/**
* @return Returns the projectFile.
*/
public File getProjectFile() {
if (projectFile == null) {
projectFile = new File(getWorkDir(), "mavenizer.xml");
}
return projectFile;
}
/**
* @param projectFile
* The projectFile to set.
*/
public void setProjectFile(File projectFile) {
this.projectFile = projectFile;
}
public Generator getGenerator() { | |