1 | void setNoindex(boolean b) {↵ | | 1 | void setPublic(boolean b) {↵
|
2 | addArgIf(b, "-noindex");↵ | | 2 | addArgIf(b, "-public");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Control generation of help link.↵ | | 5 | * Indicate whether only protected and public classes and members are to↵
|
| | | 6 | * be included in the scope processed↵
|
6 | *↵ | | 7 | *↵
|
7 | * @param b if true, do not generate help link↵ | | 8 | * @param b true if scope is to be protected.↵
|
8 | */↵ | | 9 | */↵
|
9 | public void setNohelp(boolean b) {↵ | | 10 | public void setProtected(boolean b) {↵
|
10 | addArgIf(b, "-nohelp");↵ | | 11 | addArgIf(b, "-protected");↵
|
11 | }↵ | | 12 | }↵
|
|
12 | /**↵ | | 13 | /**↵
|
13 | * Control generation of the navigation bar.↵ | | 14 | * Indicate whether only package, protected and public classes and↵
|
| | | 15 | * members are to be included in the scope processed↵
|
14 | *↵ | | 16 | *↵
|
15 | * @param b if true, do not generate navigation bar.↵ | | 17 | * @param b true if scope is to be package level.↵
|
16 | */↵ | | 18 | */↵
|
17 | public void setNonavbar(boolean b) {↵ | | 19 | public void setPackage(boolean b) {↵
|
18 | addArgIf(b, "-nonavbar");↵ | | 20 | addArgIf(b, "-package");↵
|
19 | }↵ | | 21 | }↵
|
|
20 | /**↵ | | 22 | /**↵
|
21 | * Control warnings about serial tag.↵ | | 23 | * Indicate whether all classes and↵
|
| | | 24 | * members are to be included in the scope processed↵
|
22 | *↵ | | 25 | *↵
|
23 | * @param b if true, generate warning about the serial tag.↵ | | 26 | * @param b true if scope is to be private level.↵
|
24 | */↵ | | 27 | */↵
|
25 | public void setSerialwarn(boolean b) {↵ | | 28 | public void setPrivate(boolean b) {↵
|
26 | addArgIf(b, "-serialwarn");↵ | | 29 | addArgIf(b, "-private");↵
|
27 | | | 30 |
|