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