From: David ‘Bombe’ Roden Date: Tue, 22 Dec 2009 07:15:24 +0000 (+0100) Subject: Forward the temp directory to the project inserter. X-Git-Tag: 0.8~20 X-Git-Url: https://git.pterodactylus.net/?p=jSite.git;a=commitdiff_plain;h=8b0931d029e6cab836d244a73633d1f79155d214 Forward the temp directory to the project inserter. --- diff --git a/src/de/todesbaum/jsite/gui/ProjectInsertPage.java b/src/de/todesbaum/jsite/gui/ProjectInsertPage.java index dc82f53..32fd2f1 100644 --- a/src/de/todesbaum/jsite/gui/ProjectInsertPage.java +++ b/src/de/todesbaum/jsite/gui/ProjectInsertPage.java @@ -235,6 +235,18 @@ public class ProjectInsertPage extends TWizardPage implements InsertListener, Cl projectInserter.setFreenetInterface(freenetInterface); } + /** + * Sets the project inserter’s temp directory. + * + * @see ProjectInserter#setTempDirectory(String) + * @param tempDirectory + * The temp directory to use, or {@code null} to use the system + * default + */ + public void setTempDirectory(String tempDirectory) { + projectInserter.setTempDirectory(tempDirectory); + } + // // INTERFACE InsertListener //