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