1 | String getDefaultValue() {↵ | | 1 | String getMatchNumberAsString() {↵
|
2 | return getPropertyAsString(DEFAULT);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
| | | 3 | MATCH_NUMBER);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * Sets the value of the variable if no matches are found↵
|
| | | 7 | * ↵
|
| | | 8 | * @param defaultValue↵
|
| | | 9 | */↵
|
4 | public void setTemplate(String template) {↵ | | 10 | public void setDefaultValue(String defaultValue) {↵
|
5 | setProperty(TEMPLATE, template);↵ | | 11 | setProperty(DEFAULT, defaultValue);↵
|
6 | }↵ | | 12 | }↵
|
|
7 | public String getTemplate() {↵ | | 13 | public String getDefaultValue() {↵
|
8 | return getPropertyAsString(TEMPLATE);↵ | | 14 | return getPropertyAsString(DEFAULT);↵
|
9 | } | | 15 | }
|