1 | public static class OutputProperty {↵ | | 1 | public static final class Property {↵
|
2 | ↵ | | |
|
3 | /** output property name */↵ | | 2 | private String name;↵
|
4 | private String name;↵ | | 3 | private String value;↵
|
|
5 | /** output property value */↵ | | 4 | /**↵
|
6 | private String value;↵ | | |
|
|
7 | /**↵ | | |
|
| | | 5 | * accessor to the name of the property↵
|
8 | * @return the output property name.↵ | | 6 | * @return name of the property↵
|
9 | */↵ | | 7 | */↵
|
10 | public String getName() {↵ | | 8 | public String getName() {↵
|
11 | return name;↵ | | 9 | return name;↵
|
12 | }↵ | | 10 | }↵
|
|
13 | /**↵ | | 11 | /**↵
|
14 | * set the name for this property↵ | | 12 | * setter for the name of the property↵
|
15 | * @param name A non-null String that specifies an↵ | | 13 | * @param name ↵
|
16 | * output property name, which may be namespace qualified.↵ | | 14 | name of the property↵
|
17 | */↵ | | 15 | */↵
|
18 | public void setName(String name) {↵ | | 16 | public void setName(String name) {↵
|
19 | this.name = name;↵ | | 17 | this.name = name;↵
|
20 | }↵ | | 18 | }↵
|
|
21 | /**↵ | | 19 | /**↵
|
22 | * @return the output property value.↵ | | 20 | * getter for the value of the property↵
|
| | | 21 | * @return value of the property↵
|
23 | */↵ | | 22 | */↵
|
24 | public String getValue() {↵ | | 23 | public String getValue() {↵
|
25 | return value;↵ | | 24 | return value;↵
|
26 | }↵ | | 25 | }↵
|
|
27 | /**↵ | | 26 | /**↵
|
28 | * set the value for this property↵ | | 27 | * sets the value of the property↵
|
29 | * @param value The non-null string value of the output property.↵ | | 28 | * @param value value of the property↵
|
30 | */↵ | | 29 | */↵
|
31 | public void setValue(String value) {↵ | | 30 | public void setValue(String value) {↵
|
32 | this.value = value;↵ | | 31 | this.value = value;↵
|
33 | | | 32 |
|