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