1 | String getNoCache() {↵ | | 1 | String getQuiet() {↵
|
2 | return noCache ? FLAG_NO_CACHE : "";↵ | | 2 | return quiet ? FLAG_QUIET : "";↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Get the 'verbose' Flag.↵ | | 5 | * Gets the ↵
|
6 | *↵ | | |
|
7 | * @return the 'verbose' Flag if the attribute was 'true', otherwise an empty string↵ | | 6 | recursive string. "-R"↵
|
8 | .↵ | | 7 | * @return An empty string if recursive is not set or is false.↵
|
9 | */↵ | | 8 | */↵
|
10 | protected String getVerbose() {↵ | | 9 | protected String getRecursive() {↵
|
11 | return verbose ? FLAG_VERBOSE : "";↵ | | 10 | return recursive ? FLAG_RECURSION : "";↵
|
12 | }↵ | | 11 | }↵
|
|
13 | /**↵ | | 12 | /**↵
|
14 | * Get the 'recursive' Flag.↵ | | 13 | * Gets the ↵
|
15 | *↵ | | |
|
16 | * @return the 'recursive' Flag if the attribute was 'true', otherwise an empty string↵ | | 14 | writable string. "-W"↵
|
17 | .↵ | | 15 | * @return An empty string if writable is not set or is false.↵
|
18 | */↵ | | 16 | */↵
|
19 | protected String getRecursive() {↵ | | 17 | protected String getWritable() {↵
|
20 | return recursive ? FLAG_RECURSION : "";↵ | | 18 | return writable ? FLAG_WRITABLE : "";↵
|
21 | | | 19 |
|