blob: 92039e78e717d642f92ed9248c259bb9ae71b65f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package net.java.sip.communicator.impl.protocol.icq;
import net.java.sip.communicator.service.protocol.*;
/**
* The ICQ implementation of the service.protocol.ContactGroup interface. There
* are two types of groups possible here. <tt>RootContactGroupIcqImpl</tt>
* which is the root node of the ContactList itself and
* <tt>ContactGroupIcqImpl</tt> which represents standard icq groups. The
* reason for having those 2 is that generally, ICQ 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 (ICQ) contacts.
* @author Emil Ivov
*/
public abstract class AbstractContactGroupIcqImpl
implements ContactGroup
{
}
|