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