1 | void setValidating(boolean validate) {↵ | | 1 | void setPathExtension(boolean pathExt) {↵
|
2 | setProperty(new BooleanProperty(VALIDATE_KEY, validate));↵ | | 2 | setProperty(new BooleanProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Set whether this is namespace aware↵ | | |
|
6 | * ↵ | | |
|
7 | * @param namespace↵ | | |
|
8 | */↵ | | |
|
9 | public void setNamespace(boolean namespace) {↵ | | |
|
10 | setProperty(new BooleanProperty(NAMESPACE_KEY, namespace));↵ | | |
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * Set tolerant mode if required↵ | | |
|
14 | * ↵ | | |
|
15 | * @param tolerant↵ | | |
|
16 | * true/false↵ | | |
|
17 | */↵ | | |
|
18 | public void setTolerant(boolean tolerant) {↵ | | |
|
19 | setProperty(new BooleanProperty(TOLERANT_KEY, tolerant↵ | | 3 | PATH_EXTENSION, pathExt));↵
|
| | | 4 | }↵
|
|
| | | 5 | public void setPathExtensionNoEquals(boolean pathExtNoEquals) {↵
|
| | | 6 | setProperty(new BooleanProperty(PATH_EXTENSION_NO_EQUALS, pathExtNoEquals));↵
|
| | | 7 | }↵
|
|
| | | 8 | public void setPathExtensionNoQuestionmark(boolean pathExtNoQuestionmark) {↵
|
20 | ));↵ | | 9 | setProperty(new BooleanProperty(PATH_EXTENSION_NO_QUESTIONMARK, pathExtNoQuestionmark));↵
|
21 | }↵ | | 10 | }↵
|
|
22 | public void setNegated(boolean negate) {↵ | | 11 | public void set↵
|
23 | ↵ | | 12 | ShouldCache(boolean b) {↵
|
24 | setProperty(new BooleanProperty(NEGATE_KEY, negate));↵ | | 13 | setProperty(new BooleanProperty(SHOULD_CACHE, b));↵
|
25 | } | | 14 | }
|