KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tools > ant > types > Parameter


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */

18 package org.apache.tools.ant.types;
19
20 /**
21  * A parameter is composed of a name, type and value.
22  *
23  */

24 public final class Parameter {
25     private String JavaDoc name = null;
26     private String JavaDoc type = null;
27     private String JavaDoc value = null;
28
29     /**
30      * Set the name attribute.
31      *
32      * @param name a <code>String</code> value
33      */

34     public void setName(final String JavaDoc name) {
35         this.name = name;
36     }
37
38     /**
39      * Set the type attribute.
40      *
41      * @param type a <code>String</code> value
42      */

43     public void setType(final String JavaDoc type) {
44         this.type = type;
45     }
46
47     /**
48      * Set the value attribute.
49      *
50      * @param value a <code>String</code> value
51      */

52     public void setValue(final String JavaDoc value) {
53         this.value = value;
54     }
55
56     /**
57      * Get the name attribute.
58      *
59      * @return a <code>String</code> value
60      */

61     public String JavaDoc getName() {
62         return name;
63     }
64
65     /**
66      * Get the type attribute.
67      *
68      * @return a <code>String</code> value
69      */

70     public String JavaDoc getType() {
71         return type;
72     }
73
74     /**
75      * Get the value attribute.
76      *
77      * @return a <code>String</code> value
78      */

79     public String JavaDoc getValue() {
80         return value;
81     }
82 }
83
Popular Tags