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