KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > jspbeans > CustomerInformationElement


1 /*
2  * CustomerInformationElement.java
3  *
4  * Created on April 8, 2004, 8:21 AM
5  */

6
7 package com.quikj.application.web.talk.jspbeans;
8
9 /**
10  *
11  * @author amit
12  */

13 public class CustomerInformationElement
14 {
15     
16     /** Holds value of property fullName. */
17     private String JavaDoc fullName;
18     
19     /** Holds value of property email. */
20     private String JavaDoc email;
21     
22     /** Holds value of property info. */
23     private String JavaDoc info;
24     
25     /** Creates a new instance of CustomerInformationElement */
26     public CustomerInformationElement()
27     {
28     }
29     
30     /** Getter for property fullName.
31      * @return Value of property fullName.
32      *
33      */

34     public String JavaDoc getFullName()
35     {
36         return this.fullName;
37     }
38     
39     /** Setter for property fullName.
40      * @param fullName New value of property fullName.
41      *
42      */

43     public void setFullName(String JavaDoc fullName)
44     {
45         this.fullName = fullName;
46     }
47     
48     /** Getter for property email.
49      * @return Value of property email.
50      *
51      */

52     public String JavaDoc getEmail()
53     {
54         return this.email;
55     }
56     
57     /** Setter for property email.
58      * @param email New value of property email.
59      *
60      */

61     public void setEmail(String JavaDoc email)
62     {
63         this.email = email;
64     }
65     
66     /** Getter for property info.
67      * @return Value of property info.
68      *
69      */

70     public String JavaDoc getInfo()
71     {
72         return this.info;
73     }
74     
75     /** Setter for property info.
76      * @param info New value of property info.
77      *
78      */

79     public void setInfo(String JavaDoc info)
80     {
81         this.info = info;
82     }
83     
84 }
85
Popular Tags