1 | public static class DnameParam {↵ | | 1 | public static final class Property {↵
|
|
2 | private String name;↵ | | 2 | private String name;↵
|
3 | private String value;↵ | | 3 | private String value;↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Set the name attribute.↵ | | 5 | * accessor to the name of the property↵
|
6 | * @param name a <code>String</code> value↵ | | 6 | * @return name of the property↵
|
7 | */↵ | | 7 | */↵
|
8 | public void setName(String name) {↵ | | 8 | public String getName() {↵
|
9 | this.name = name;↵ | | 9 | return name;↵
|
10 | }↵ | | 10 | }↵
|
|
11 | /**↵ | | 11 | /**↵
|
12 | * Get the name attribute.↵ | | 12 | * setter for the name ↵
|
13 | * @return the name.↵ | | 13 | of the property↵
|
| | | 14 | * @param name name of the property↵
|
14 | */↵ | | 15 | */↵
|
15 | public String getName() {↵ | | 16 | public void setName(String name) {↵
|
16 | return name;↵ | | 17 | this.name = name;↵
|
17 | }↵ | | 18 | }↵
|
|
18 | /**↵ | | 19 | /**↵
|
19 | * Set the value attribute.↵ | | 20 | * getter for the value of the property↵
|
20 | * @param value a <code>String</code> value↵ | | 21 | * @return value of the property↵
|
21 | */↵ | | 22 | */↵
|
22 | public void setValue(String value) {↵ | | 23 | public String getValue() {↵
|
23 | this.value = value;↵ | | 24 | return value;↵
|
24 | }↵ | | 25 | }↵
|
|
25 | /**↵ | | 26 | /**↵
|
26 | * Get the value attribute.↵ | | 27 | * sets the value ↵
|
27 | * @return the value.↵ | | 28 | of the property↵
|
| | | 29 | * @param value value of the property↵
|
28 | */↵ | | 30 | */↵
|
29 | public String getValue() {↵ | | 31 | public void setValue(String value) {↵
|
30 | return value;↵ | | 32 | this.value = value;↵
|
31 | | | 33 |
|