1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package com.finalist.ant.tasks.docbook;
19
20 import org.apache.tools.ant.Task;
21
22 /***
23 * <code>XSLTParameterTask.java</code>
24 *
25 * This class representa a name value pair. Is't a simple bean class which is also a ant Task
26 *
27 * @author Stefan Lenselink
28 * @version $Revision: 1.1 $
29 */
30
31 public class XSLTParameterTask extends Task {
32 private String name;
33 private String value;
34
35 /***
36 * The Setter value for the name attribute
37 *
38 * @param name the name of the name value pair
39 */
40 public void setName(String name){
41 this.name = name;
42 }
43
44 /***
45 * The Setter value for the value attribute
46 *
47 * @param value the value of the name value pair
48 */
49 public void setValue(String value){
50 this.value = value;
51 }
52
53 /***
54 * The Getter method for the name attribute
55 *
56 * @return the name of the name value pair
57 */
58 public String getName(){
59 return name;
60 }
61
62 /***
63 * The Getter method for the value attribute
64 *
65 * @return the value of the name value pair
66 */
67 public String getValue(){
68 return value;
69 }
70 }
71
72
73
74
75
76
77
78
79
80
81
82