1 | void setPublic(boolean b) {↵ | | 1 | void setNodeprecated(boolean b) {↵
|
2 | addArgIf(b, "-public");↵ | | 2 | addArgIf(b, "-nodeprecated");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Indicate whether only protected and public classes and members are to↵ | | 5 | * Control deprecated ↵
|
6 | * be included in the scope processed↵ | | 6 | list generation↵
|
7 | *↵ | | 7 | *↵
|
8 | * @param b true if scope is to be protected.↵ | | 8 | * @param b if true, do not generate deprecated list.↵
|
9 | */↵ | | 9 | */↵
|
10 | public void setProtected(boolean b) {↵ | | 10 | public void setNodeprecatedlist(boolean b) {↵
|
11 | addArgIf(b, "-protected");↵ | | 11 | addArgIf(b, "-nodeprecatedlist");↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /**↵ | | 13 | /**↵
|
14 | * Indicate whether only package, protected and public classes and↵ | | 14 | * ↵
|
15 | * members are to be included in the scope processed↵ | | 15 | Control class tree generation.↵
|
16 | *↵ | | 16 | *↵
|
17 | * @param b true if scope is to be package level.↵ | | 17 | * @param b if true, do not generate class hierarchy.↵
|
18 | */↵ | | 18 | */↵
|
19 | public void setPackage(boolean b) {↵ | | 19 | public void setNotree(boolean b) {↵
|
20 | addArgIf(b, "-package");↵ | | 20 | addArgIf(b, "-notree");↵
|
21 | }↵ | | 21 | }↵
|
|
22 | /**↵ | | 22 | /**↵
|
23 | * Indicate whether all classes and↵ | | 23 | * ↵
|
24 | * members are to be included in the scope processed↵ | | 24 | Control generation of index.↵
|
25 | *↵ | | 25 | *↵
|
26 | * @param b true if scope is to be private level.↵ | | 26 | * @param b if true, do not generate index.↵
|
27 | */↵ | | 27 | */↵
|
28 | public void setPrivate(boolean b) {↵ | | 28 | public void setNoindex(boolean b) {↵
|
29 | addArgIf(b, "-private");↵ | | 29 | addArgIf(b, "-noindex");↵
|
30 | | | 30 |
|