KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > jetspeed > util > types > Parameter


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

16
17 package org.apache.jetspeed.util.types;
18
19
20 /**
21
22 Autogenerated JavaBean from xjay (http://relativity.yi.org/xjay)
23
24 @author XJay
25 @version $Id: Parameter.java,v 1.4 2004/02/23 03:17:30 jford Exp $
26 */

27
28
29 public class Parameter {
30
31     
32
33     //BEGIN members
34

35     private String JavaDoc _name;
36     
37     private String JavaDoc _value;
38     
39     private String JavaDoc _type;
40     
41     //END members
42

43     //BEGIN methods
44

45     public String JavaDoc getName() {
46         return this._name;
47     }
48                         
49         
50     public void setName ( String JavaDoc _name ) {
51         this._name = _name;
52     }
53     
54     public String JavaDoc getValue() {
55         return this._value;
56     }
57                         
58         
59     public void setValue ( String JavaDoc _value ) {
60         this._value = _value;
61     }
62     
63     public String JavaDoc getType() {
64         return this._type;
65     }
66                         
67         
68     public void setType ( String JavaDoc _type ) {
69         this._type = _type;
70     }
71     
72     //END methods
73
}
Popular Tags