| | | 1 | void setPublic(boolean b) {↵
|
| | | 2 | addArgIf(b, "-public");↵
|
| | | 3 | }↵
|
|
| | | 4 | /**↵
|
| | | 5 | * Indicate whether only protected and public classes and members are to↵
|
| | | 6 | * be included in the scope processed↵
|
| | | 7 | *↵
|
| | | 8 | * @param b true if scope is to be protected.↵
|
| | | 9 | */↵
|
1 | void setProtected(boolean b) {↵ | | 10 | public void setProtected(boolean b) {↵
|
2 | addArgIf(b, "-protected");↵ | | 11 | addArgIf(b, "-protected");↵
|
3 | }↵ | | 12 | }↵
|
|
4 | /**↵ | | 13 | /**↵
|
5 | * Indicate whether only package, protected and public classes and↵ | | 14 | * Indicate whether only package, protected and public classes and↵
|
6 | * members are to be included in the scope processed↵ | | 15 | * members are to be included in the scope processed↵
|
7 | *↵ | | 16 | *↵
|
8 | * @param b true if scope is to be package level.↵ | | 17 | * @param b true if scope is to be package level.↵
|
9 | */↵ | | 18 | */↵
|
10 | public void setPackage(boolean b) {↵ | | 19 | public void setPackage(boolean b) {↵
|
11 | addArgIf(b, "-package");↵ | | 20 | addArgIf(b, "-package");↵
|
12 | }↵ | | 21 |
|
|
13 | /**↵ | | | |
14 | * Indicate whether all classes and↵ | | | |
15 | * members are to be included in the scope processed↵ | | | |
16 | *↵ | | | |
17 | * @param b true if scope is to be private level.↵ | | | |
18 | */↵ | | | |
19 | public void setPrivate(boolean b) {↵ | | | |
20 | addArgIf(b, "-private");↵ | | | |
21 | | | | |