aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/gui/main/contactlist/ContactListListener.java
blob: 542a945e6ee5a4ab571b36f14fa15b67e6e06fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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.gui.main.contactlist;

import java.util.*;

public interface ContactListListener extends EventListener
{
    
    public void contactSelected(ContactListEvent evt);
    
    public void protocolContactSelected(ContactListEvent evt);
    
}