KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * CannedMessageElement.java
3  *
4  * Created on June 6, 2003, 11:29 AM
5  */

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

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

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

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

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

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

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

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