KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > feature > operator > OperatorElement


1 /*
2  * OperatorElement.java
3  *
4  * Created on May 2, 2003, 3:01 AM
5  */

6
7 package com.quikj.application.web.talk.feature.operator;
8
9 import com.quikj.application.web.talk.messaging.*;
10
11 /**
12  *
13  * @author amit
14  */

15 public class OperatorElement
16 {
17     /** Holds value of property proactiveSubscribersSent. */
18     private boolean proactiveSubscribersSent = false;
19     
20     /** Holds value of property operatorInfo. */
21     private GroupMemberElement operatorInfo;
22     
23     /** Creates a new instance of OperatorElement */
24     public OperatorElement()
25     {
26     }
27     
28     /** Getter for property proactiveSubscribersSent.
29      * @return Value of property proactiveSubscribersSent.
30      *
31      */

32     public boolean isProactiveSubscribersSent()
33     {
34         return this.proactiveSubscribersSent;
35     }
36     
37     /** Setter for property proactiveSubscribersSent.
38      * @param proactiveSubscribersSent New value of property proactiveSubscribersSent.
39      *
40      */

41     public void setProactiveSubscribersSent(boolean proactiveSubscribersSent)
42     {
43         this.proactiveSubscribersSent = proactiveSubscribersSent;
44     }
45     
46     /** Getter for property operatorInfo.
47      * @return Value of property operatorInfo.
48      *
49      */

50     public GroupMemberElement getOperatorInfo()
51     {
52         return this.operatorInfo;
53     }
54     
55     /** Setter for property operatorInfo.
56      * @param operatorInfo New value of property operatorInfo.
57      *
58      */

59     public void setOperatorInfo(GroupMemberElement operatorInfo)
60     {
61         this.operatorInfo = operatorInfo;
62     }
63     
64 }
65
Popular Tags