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