KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > plugin > GroupElement


1 package com.quikj.application.web.talk.plugin;
2
3 public class GroupElement
4 {
5     // some synchronization required due to: CP+OAMP interaction or OAMP+OAMP interaction
6

7     /** Creates a new instance of GroupElement */
8     public GroupElement()
9     {
10     }
11     
12     /** Getter for property memberBusyNotificationControl.
13      * @return Value of property memberBusyNotificationControl.
14      */

15     public synchronized int getMemberBusyNotificationControl()
16     {
17         return memberBusyNotificationControl;
18     }
19     
20     /** Setter for property memberBusyNotificationControl.
21      * @param memberBusyNotificationControl New value of property memberBusyNotificationControl.
22      */

23     public synchronized void setMemberBusyNotificationControl(int memberBusyNotificationControl)
24     {
25         this.memberBusyNotificationControl = memberBusyNotificationControl;
26     }
27     
28     /** Getter for property memberLoginNotificationControl.
29      * @return Value of property memberLoginNotificationControl.
30      */

31     public synchronized int getMemberLoginNotificationControl()
32     {
33         return memberLoginNotificationControl;
34     }
35     
36     /** Setter for property memberLoginNotificationControl.
37      * @param memberLoginNotificationControl New value of property memberLoginNotificationControl.
38      */

39     public synchronized void setMemberLoginNotificationControl(int memberLoginNotificationControl)
40     {
41         this.memberLoginNotificationControl = memberLoginNotificationControl;
42     }
43     
44     /** Getter for property name.
45      * @return Value of property name.
46      */

47     public java.lang.String JavaDoc getName()
48     {
49         return name;
50     }
51     
52     /** Setter for property name.
53      * @param name New value of property name.
54      */

55     public void setName(java.lang.String JavaDoc name)
56     {
57         this.name = name;
58     }
59     
60     /** Getter for property ownerBusyNotificationControl.
61      * @return Value of property ownerBusyNotificationControl.
62      */

63     public int getOwnerBusyNotificationControl()
64     {
65         return ownerBusyNotificationControl;
66     }
67     
68     /** Setter for property ownerBusyNotificationControl.
69      * @param ownerBusyNotificationControl New value of property ownerBusyNotificationControl.
70      */

71     public void setOwnerBusyNotificationControl(int ownerBusyNotificationControl)
72     {
73         this.ownerBusyNotificationControl = ownerBusyNotificationControl;
74     }
75     
76     /** Getter for property ownerLoginNotificationControl.
77      * @return Value of property ownerLoginNotificationControl.
78      */

79     public int getOwnerLoginNotificationControl()
80     {
81         return ownerLoginNotificationControl;
82     }
83     
84     /** Setter for property ownerLoginNotificationControl.
85      * @param ownerLoginNotificationControl New value of property ownerLoginNotificationControl.
86      */

87     public void setOwnerLoginNotificationControl(int ownerLoginNotificationControl)
88     {
89         this.ownerLoginNotificationControl = ownerLoginNotificationControl;
90     }
91     
92     private String JavaDoc name;
93     
94     private int memberLoginNotificationControl;
95     
96     private int memberBusyNotificationControl;
97     
98     private int ownerLoginNotificationControl;
99     
100     private int ownerBusyNotificationControl;
101     
102 }
103
Popular Tags