| | | 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 | */↵
|
1 | String getNoCache() {↵ | | 9 | protected String getNoCache() {↵
|
2 | return noCache ? FLAG_NO_CACHE : "";↵ | | 10 | return noCache ? FLAG_NO_CACHE : "";↵
|
3 | }↵ | | 11 | }↵
|
|
4 | /**↵ | | 12 | /**↵
|
5 | * Get the 'verbose' Flag.↵ | | 13 | * Get the 'verbose' Flag.↵
|
6 | *↵ | | 14 | *↵
|
7 | * @return the 'verbose' Flag if the attribute was 'true', otherwise an empty string.↵ | | 15 | * @return the 'verbose' Flag if the attribute was 'true', otherwise an empty string.↵
|
8 | */↵ | | 16 | */↵
|
9 | protected String getVerbose() {↵ | | 17 | protected String getVerbose() {↵
|
10 | return verbose ? FLAG_VERBOSE : "";↵ | | 18 | return verbose ? FLAG_VERBOSE : "";↵
|
11 | }↵ | | 19 |
|
|
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 | | | | |