1 | void setNodeprecated(boolean b) {↵ | | 1 | void setPublic(boolean b) {↵
|
2 | addArgIf(b, "-nodeprecated");↵ | | 2 | addArgIf(b, "-public");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Control deprecated list generation↵ | | 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 deprecated list.↵ | | 8 | * @param b true if scope is to be protected.↵
|
8 | */↵ | | 9 | */↵
|
9 | public void setNodeprecatedlist(boolean b) {↵ | | 10 | public void setProtected(boolean b) {↵
|
10 | addArgIf(b, "-nodeprecatedlist");↵ | | 11 | addArgIf(b, "-protected");↵
|
11 | }↵ | | 12 | }↵
|
|
12 | /**↵ | | 13 | /**↵
|
13 | * Control class tree generation.↵ | | 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 class hierarchy.↵ | | 17 | * @param b true if scope is to be package level.↵
|
16 | */↵ | | 18 | */↵
|
17 | public void setNotree(boolean b) {↵ | | 19 | public void setPackage(boolean b) {↵
|
18 | addArgIf(b, "-notree");↵ | | 20 | addArgIf(b, "-package");↵
|
19 | | | 21 |
|