1 | public static final class Option {↵ | | 1 | public ↵
|
2 | private String↵ | | 2 | class DocletParam {↵
|
3 | name;↵ | | 3 | /** The parameter name */↵
|
4 | private String value;↵ | | 4 | private String name;↵
|
|
5 | /** Constructor for Option */↵ | | 5 | /** ↵
|
6 | public Option() {↵ | | |
|
7 | //default↵ | | |
|
8 | }↵ | | 6 | The parameter value */↵
|
| | | 7 | private String value;↵
|
|
9 | /**↵ | | 8 | /**↵
|
10 | * Get the name attribute.↵ | | 9 | * Set the name of the parameter.↵
|
11 | * @return the name attribu↵ | | 10 | *↵
|
12 | te.↵ | | 11 | * @param name the name of the doclet parameter↵
|
13 | */↵ | | 12 | */↵
|
14 | public String getName() {↵ | | 13 | public void setName(String name) {↵
|
15 | return name;↵ | | 14 | this.name = name;↵
|
16 | }↵ | | 15 | }↵
|
|
17 | /**↵ | | 16 | /**↵
|
18 | * Set the name attribute.↵ | | 17 | * Get the ↵
|
19 | * @param name the name of the option↵ | | 18 | parameter name.↵
|
| | | 19 | *↵
|
20 | .↵ | | 20 | * @return the parameter's name.↵
|
21 | */↵ | | 21 | */↵
|
22 | public void setName(String name) {↵ | | 22 | public String getName() {↵
|
23 | this.name = name;↵ | | 23 | return name;↵
|
24 | }↵ | | 24 | }↵
|
|
25 | /**↵ | | 25 | /**↵
|
26 | * Get the value attribute.↵ | | 26 | * Set the ↵
|
27 | * @return the value attribut↵ | | 27 | parameter value.↵
|
| | | 28 | *↵
|
| | | 29 | * Note that only string values are supported. No resolution of file↵
|
| | | 30 | * paths is performed.↵
|
| | | 31 | *↵
|
28 | e.↵ | | 32 | * @param value the parameter value.↵
|
29 | */↵ | | 33 | */↵
|
30 | public String getValue() {↵ | | 34 | public void setValue(String value) {↵
|
31 | return value;↵ | | 35 | this.value = value;↵
|
32 | }↵ | | 36 | }↵
|
|
33 | /**↵ | | 37 | /**↵
|
34 | * Set the value attribute.↵ | | 38 | * Get the ↵
|
35 | * @param value the value of the option↵ | | 39 | parameter value.↵
|
| | | 40 | *↵
|
36 | .↵ | | 41 | * @return the parameter value.↵
|
37 | */↵ | | 42 | */↵
|
38 | public void setValue(String value) {↵ | | 43 | public String getValue() {↵
|
39 | this.value = value;↵ | | 44 | return value;↵
|
40 | | | 45 |
|