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