1 | void setPublic(boolean b) {↵ | | 1 | void setNohelp(boolean b) {↵
|
2 | addArgIf(b, "-public");↵ | | 2 | addArgIf(b, "-nohelp");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Indicate whether only protected and public classes and members are to↵ | | 5 | * ↵
|
6 | * be included in the scope processed↵ | | 6 | Control generation of the navigation bar.↵
|
7 | *↵ | | 7 | *↵
|
8 | * @param b true if scope is to be protected.↵ | | 8 | * @param b if true, do not generate navigation bar.↵
|
9 | */↵ | | 9 | */↵
|
10 | public void setProtected(boolean b) {↵ | | 10 | public void setNonavbar(boolean b) {↵
|
11 | addArgIf(b, "-protected");↵ | | 11 | addArgIf(b, "-nonavbar");↵
|
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 warnings about serial tag.↵
|
16 | *↵ | | 16 | *↵
|
17 | * @param b true if scope is to be package level.↵ | | 17 | * @param b if true, generate warning about the serial tag.↵
|
18 | */↵ | | 18 | */↵
|
19 | public void setPackage(boolean b) {↵ | | 19 | public void setSerialwarn(boolean b) {↵
|
20 | addArgIf(b, "-package");↵ | | 20 | addArgIf(b, "-serialwarn");↵
|
21 | } | | 21 | }
|