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