OSDN Git Service

プロファイル編集
[coroid/inqubus.git] / frontend / src / saccubus / converter / classic / profile / GeneralSetting.java
1 /* $Id$ */
2 package saccubus.converter.classic.profile;
3
4 import java.io.File;
5
6 public class GeneralSetting implements yukihane.saccubus.converter.profile.GeneralProfile {
7
8     private final File tempDir;
9
10     public GeneralSetting(File tempDir) {
11         this.tempDir = tempDir;
12     }
13
14     @Override
15     public File getTempDir() {
16         return tempDir;
17     }
18
19     @Override
20     public String getReplaceFrom() {
21         throw new UnsupportedOperationException("Not supported yet.");
22     }
23
24     @Override
25     public String getReplaceTo() {
26         throw new UnsupportedOperationException("Not supported yet.");
27     }
28 }