1 | void setNamespace(boolean namespace) {↵ | | 1 | void setPathExtension(boolean pathExt) {↵
|
2 | setProperty(new BooleanProperty(NAMESPACE_KEY, namespace));↵ | | 2 | setProperty(new BooleanProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Set tolerant mode if required↵ | | |
|
6 | * ↵ | | |
|
7 | * @param tolerant↵ | | |
|
8 | * true/false↵ | | |
|
9 | */↵ | | |
|
10 | public void setTolerant(boolean tolerant) {↵ | | |
|
11 | setProperty(new BooleanProperty(TOLERANT_KEY, tolerant));↵ | | |
|
12 | }↵ | | |
|
|
13 | public void setNegated(boolean negate) {↵ | | |
|
14 | setProperty(new BooleanProperty(NEGATE_KEY, negate↵ | | 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) {↵
|
15 | ));↵ | | 9 | setProperty(new BooleanProperty(PATH_EXTENSION_NO_QUESTIONMARK, pathExtNoQuestionmark));↵
|
16 | | | 10 |
|