We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4250e52 commit a06d06bCopy full SHA for a06d06b
compiler/src/main/java/org/hisrc/jsonix/settings/Settings.java
@@ -1,8 +1,21 @@
1
package org.hisrc.jsonix.settings;
2
3
+import java.io.File;
4
+
5
import org.kohsuke.args4j.Option;
6
7
public class Settings {
8
9
+ private File targetDirectory;
10
11
+ public File getTargetDirectory() {
12
+ return targetDirectory;
13
+ }
14
15
+ @Option(name = "-d")
16
+ public void setTargetDirectory(File targetDirectory) {
17
+ this.targetDirectory = targetDirectory;
18
19
20
private LogLevelSetting logLevel = LogLevelSetting.INFO;
21
0 commit comments