01: package de.regnis.q.sequence.line;
02:
03: import java.io.File;
04: import java.io.IOException;
05:
06: /**
07: * @author Marc Strapetz
08: */
09: public class QSequenceLineFixedTempDirectoryFactory implements
10: QSequenceLineTempDirectoryFactory {
11:
12: // Fields =================================================================
13:
14: private final File tempDirectory;
15:
16: // Setup ==================================================================
17:
18: public QSequenceLineFixedTempDirectoryFactory(File tempDirectory) {
19: this .tempDirectory = tempDirectory;
20: }
21:
22: // Implemented ============================================================
23:
24: public File getTempDirectory() throws IOException {
25: return tempDirectory;
26: }
27:
28: public void close() {
29: }
30: }
|