1 | void setWhitespace(boolean whitespace) {↵ | | |
|
2 | setProperty(new BooleanProperty(WHITESPACE_KEY, whitespace));↵ | | |
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Set use validation↵ | | |
|
6 | * ↵ | | |
|
7 | * @param validate↵ | | |
|
8 | */↵ | | |
|
9 | public void setValidating(boolean validate) {↵ | | 1 | void setValidating(boolean validate) {↵
|
10 | setProperty(new BooleanProperty(VALIDATE_KEY, validate));↵ | | 2 | setProperty(new BooleanProperty(VALIDATE_KEY, validate));↵
|
11 | }↵ | | 3 | }↵
|
|
12 | /**↵ | | 4 | /**↵
|
13 | * Set whether this is namespace aware↵ | | 5 | * Set whether this is namespace aware↵
|
14 | * ↵ | | 6 | * ↵
|
15 | * @param namespace↵ | | 7 | * @param namespace↵
|
16 | */↵ | | 8 | */↵
|
17 | public void setNamespace(boolean namespace) {↵ | | 9 | public void setNamespace(boolean namespace) {↵
|
18 | setProperty(new BooleanProperty(NAMESPACE_KEY, namespace));↵ | | 10 | setProperty(new BooleanProperty(NAMESPACE_KEY, namespace));↵
|
19 | }↵ | | 11 | }↵
|
|
20 | /**↵ | | 12 | /**↵
|
21 | * Set tolerant mode if required↵ | | 13 | * Set tolerant mode if required↵
|
22 | * ↵ | | 14 | * ↵
|
23 | * @param tolerant↵ | | 15 | * @param tolerant↵
|
24 | * true/false↵ | | 16 | * true/false↵
|
25 | */↵ | | 17 | */↵
|
26 | public void setTolerant(boolean tolerant) {↵ | | 18 | public void setTolerant(boolean tolerant) {↵
|
27 | setProperty(new BooleanProperty(TOLERANT_KEY, tolerant));↵ | | 19 | setProperty(new BooleanProperty(TOLERANT_KEY, tolerant));↵
|
28 | | | 20 | }↵
|
|
| | | 21 | public void setNegated(boolean negate) {↵
|
| | | 22 | setProperty(new BooleanProperty(NEGATE_KEY, negate));↵
|
| | | 23 |
|