| | | 1 | void setNotree(boolean b) {↵
|
| | | 2 | addArgIf(b, "-notree");↵
|
| | | 3 | }↵
|
|
| | | 4 | /**↵
|
| | | 5 | * Control generation of index.↵
|
| | | 6 | *↵
|
| | | 7 | * @param b if true, do not generate index.↵
|
| | | 8 | */↵
|
1 | void setNoindex(boolean b) {↵ | | 9 | public void setNoindex(boolean b) {↵
|
2 | addArgIf(b, "-noindex");↵ | | 10 | addArgIf(b, "-noindex");↵
|
3 | }↵ | | 11 | }↵
|
|
4 | /**↵ | | 12 | /**↵
|
5 | * Control generation of help link.↵ | | 13 | * Control generation of help link.↵
|
6 | *↵ | | 14 | *↵
|
7 | * @param b if true, do not generate help link↵ | | 15 | * @param b if true, do not generate help link↵
|
8 | */↵ | | 16 | */↵
|
9 | public void setNohelp(boolean b) {↵ | | 17 | public void setNohelp(boolean b) {↵
|
10 | addArgIf(b, "-nohelp");↵ | | 18 | addArgIf(b, "-nohelp");↵
|
11 | }↵ | | 19 | }↵
|
|
12 | /**↵ | | 20 | /**↵
|
13 | * Control generation of the navigation bar.↵ | | 21 | * Control generation of the navigation bar.↵
|
14 | *↵ | | 22 | *↵
|
15 | * @param b if true, do not generate navigation bar.↵ | | 23 | * @param b if true, do not generate navigation bar.↵
|
16 | */↵ | | 24 | */↵
|
17 | public void setNonavbar(boolean b) {↵ | | 25 | public void setNonavbar(boolean b) {↵
|
18 | addArgIf(b, "-nonavbar");↵ | | 26 | addArgIf(b, "-nonavbar");↵
|
19 | }↵ | | 27 |
|
|
20 | /**↵ | | | |
21 | * Control warnings about serial tag.↵ | | | |
22 | *↵ | | | |
23 | * @param b if true, generate warning about the serial tag.↵ | | | |
24 | */↵ | | | |
25 | public void setSerialwarn(boolean b) {↵ | | | |
26 | addArgIf(b, "-serialwarn");↵ | | | |
27 | | | | |