1 | public class DocletParam {↵ | | 1 | public ↵
|
2 | /** The parameter name */↵ | | |
|
3 | private String name;↵ | | |
|
|
4 | /** The parameter value */↵ | | 2 | static final class Property {↵
|
|
| | | 3 | private String name;↵
|
5 | private String value;↵ | | 4 | private String value;↵
|
|
6 | /**↵ | | 5 | /**↵
|
7 | * Set the name of the parameter.↵ | | 6 | * accessor to the name of the p↵
|
8 | *↵ | | |
|
9 | * @param name the name of the doclet parameter↵ | | 7 | roperty↵
|
| | | 8 | * @return name of the property↵
|
10 | */↵ | | 9 | */↵
|
11 | public void setName(String name) {↵ | | 10 | public String getName() {↵
|
12 | this.name = name;↵ | | 11 | return name;↵
|
13 | }↵ | | 12 | }↵
|
|
14 | /**↵ | | 13 | /**↵
|
15 | * Get the parameter name.↵ | | 14 | * set↵
|
16 | *↵ | | |
|
17 | * @return the parameter's name.↵ | | 15 | ter for the name of the property↵
|
| | | 16 | * @param name name of the property↵
|
18 | */↵ | | 17 | */↵
|
19 | public String getName() {↵ | | 18 | public void setName(String name) {↵
|
20 | return name;↵ | | 19 | this.name = name;↵
|
21 | }↵ | | 20 | }↵
|
|
22 | /**↵ | | 21 | /**↵
|
23 | * Set the parameter value.↵ | | 22 | * get↵
|
24 | *↵ | | |
|
25 | * Note that only string values are supported. No resolution of file↵ | | |
|
26 | * paths is performed.↵ | | |
|
27 | *↵ | | 23 | ter for the value of the property↵
|
28 | * @param value the parameter value.↵ | | 24 | * @return value of the property↵
|
29 | */↵ | | 25 | */↵
|
30 | public void setValue(String value) {↵ | | 26 | public String getValue() {↵
|
31 | this.value = value;↵ | | 27 | return value;↵
|
32 | }↵ | | 28 | }↵
|
|
33 | /**↵ | | 29 | /**↵
|
34 | * Get the parameter value.↵ | | 30 | * sets the ↵
|
35 | *↵ | | |
|
36 | * @return the parameter value.↵ | | 31 | value of the property↵
|
| | | 32 | * @param value value of the property↵
|
37 | */↵ | | 33 | */↵
|
38 | public String getValue() {↵ | | 34 | public void setValue(String value) {↵
|
39 | return value;↵ | | 35 | this.value = value;↵
|
40 | | | 36 |
|