KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > client > ListGroupElement


1 /*
2  * GroupElement.java
3  *
4  * Created on May 11, 2002, 5:01 AM
5  */

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

13 public class ListGroupElement
14 {
15     private String JavaDoc name = null;
16     private String JavaDoc fullName = null;
17     private int callCount = 0;
18     
19     /** Creates a new instance of GroupElement */
20     public ListGroupElement()
21     {
22     }
23     
24     public ListGroupElement(String JavaDoc name, String JavaDoc full_name, int call_count)
25     {
26         this.name = name;
27         fullName = full_name;
28         callCount = call_count;
29     }
30     
31     /** Getter for property callCount.
32      * @return Value of property callCount.
33      */

34     public int getCallCount()
35     {
36         return callCount;
37     }
38     
39     /** Setter for property callCount.
40      * @param callCount New value of property callCount.
41      */

42     public void setCallCount(int callCount)
43     {
44         this.callCount = callCount;
45     }
46     
47     /** Getter for property fullName.
48      * @return Value of property fullName.
49      */

50     public java.lang.String JavaDoc getFullName()
51     {
52         return fullName;
53     }
54     
55     /** Setter for property fullName.
56      * @param fullName New value of property fullName.
57      */

58     public void setFullName(java.lang.String JavaDoc fullName)
59     {
60         this.fullName = fullName;
61     }
62     
63     /** Getter for property name.
64      * @return Value of property name.
65      */

66     public java.lang.String JavaDoc getName()
67     {
68         return name;
69     }
70     
71     /** Setter for property name.
72      * @param name New value of property name.
73      */

74     public void setName(java.lang.String JavaDoc name)
75     {
76         this.name = name;
77     }
78     
79 }
80
Popular Tags