KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > communicator > applications > webtalk > model > CannedMessageElement


1 /*
2  * CustomerElement.java
3  *
4  * Created on June 7, 2003, 12:57 PM
5  */

6
7 package com.quikj.application.communicator.applications.webtalk.model;
8
9 /**
10  *
11  * @author bhm
12  */

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

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

46     public void setId(String JavaDoc id)
47     {
48         this.id = id;
49     }
50     
51     /** Getter for property group.
52      * @return Value of property group.
53      *
54      */

55     public String JavaDoc getGroup()
56     {
57         return this.group;
58     }
59     
60     /** Setter for property group.
61      * @param group New value of property group.
62      *
63      */

64     public void setGroup(String JavaDoc group)
65     {
66         this.group = group;
67     }
68     
69     /** Getter for property description.
70      * @return Value of property description.
71      *
72      */

73     public String JavaDoc getDescription()
74     {
75         return this.description;
76     }
77     
78     /** Setter for property description.
79      * @param description New value of property description.
80      *
81      */

82     public void setDescription(String JavaDoc description)
83     {
84         this.description = description;
85     }
86     
87     /** Getter for property message.
88      * @return Value of property message.
89      *
90      */

91     public String JavaDoc getMessage()
92     {
93         return this.message;
94     }
95     
96     /** Setter for property message.
97      * @param message New value of property message.
98      *
99      */

100     public void setMessage(String JavaDoc message)
101     {
102         this.message = message;
103     }
104     
105 }
106
Popular Tags