blob: 93a29b81e8d685f492cd627ca535b4086640cb46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.protocol.jabber;
import net.java.sip.communicator.service.protocol.*;
/**
* The Jabber implementation of the service.protocol.ContactGroup interface. There
* are two types of groups possible here. <tt>RootContactGroupJabberImpl</tt>
* which is the root node of the ContactList itself and
* <tt>ContactGroupJabberImpl</tt> which represents standard groups. The
* reason for having those 2 is that generally, Jabber groups may not contain
* subgroups. A contact list on the other hand may not directly contain buddies.
*
*
* The reason for having an abstract class is only - being able to esily
* recognize our own (Jabber) contacts.
* @author Damian Minkov
*/
public abstract class AbstractContactGroupJabberImpl
implements ContactGroup
{
}
|