1 | void setOverview(File f) {↵ | | 1 | void setExtdirs(Path path) {↵
|
2 | cmd.createArgument().setValue("-overview");↵ | | 2 | cmd.createArgument().setValue("-extdirs");↵
|
3 | cmd.createArgument().setFile(f);↵ | | 3 | cmd.createArgument().setPath(path);↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * Indicate whether only public classes and members are to be included in↵ | | 6 | * ↵
|
7 | * the scope processed↵ | | 7 | Run javadoc in verbose mode↵
|
8 | *↵ | | 8 | *↵
|
9 | * @param b true if scope is to be public.↵ | | 9 | * @param b true if operation is to be verbose.↵
|
10 | */↵ | | 10 | */↵
|
11 | public void setPublic(boolean b) {↵ | | 11 | public void setVerbose(boolean b) {↵
|
12 | addArgIf(b, "-public");↵ | | 12 | addArgIf(b, "-verbose");↵
|
13 | } | | 13 | }
|