1 | String getNoCompress() {↵ | | |
|
2 | return noCompress ? FLAG_NO_COMPRESSION : "";↵ | | |
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Get the NoCache flag.↵ | | |
|
6 | *↵ | | |
|
7 | * @return the 'nocache' Flag if the attribute was 'true', otherwise an empty string.↵ | | |
|
8 | */↵ | | |
|
9 | protected String getNoCache() {↵ | | 1 | String getNoCache() {↵
|
10 | return noCache ? FLAG_NO_CACHE : "";↵ | | 2 | return noCache ? FLAG_NO_CACHE : "";↵
|
11 | }↵ | | 3 | }↵
|
|
12 | /**↵ | | 4 | /**↵
|
13 | * Get the 'verbose' Flag.↵ | | 5 | * Get the 'verbose' Flag.↵
|
14 | *↵ | | 6 | *↵
|
15 | * @return the 'verbose' Flag if the attribute was 'true', otherwise an empty string.↵ | | 7 | * @return the 'verbose' Flag if the attribute was 'true', otherwise an empty string.↵
|
16 | */↵ | | 8 | */↵
|
17 | protected String getVerbose() {↵ | | 9 | protected String getVerbose() {↵
|
18 | return verbose ? FLAG_VERBOSE : "";↵ | | 10 | return verbose ? FLAG_VERBOSE : "";↵
|
19 | } | | 11 | }↵
|
|
| | | 12 | /**↵
|
| | | 13 | * Get the 'recursive' Flag.↵
|
| | | 14 | *↵
|
| | | 15 | * @return the 'recursive' Flag if the attribute was 'true', otherwise an empty string.↵
|
| | | 16 | */↵
|
| | | 17 | protected String getRecursive() {↵
|
| | | 18 | return recursive ? FLAG_RECURSION : "";↵
|
| | | 19 | }
|