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