CPD Results

The following document contains the results of PMD's CPD

Duplications

FileLine
net\sf\mavenizer\cli\commands\Analyse.java154
net\sf\mavenizer\cli\commands\Generate.java107
	}

	/**
	 * @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() {