aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/gui/main/contactlist/ContactListListener.java
blob: 5706fcc5ed6646d0029a2681e2ffaea99b78307d (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
30
31
32
33
34
35
36
/*
 * 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.*;

/**
 * Listens for events coming from the contact list.
 * 
 * @author Yana Stamcheva
 */
public interface ContactListListener extends EventListener
{
    /**
     * 
     * @param evt
     */
    public void groupSelected(ContactListEvent evt);
    
    /**
     * 
     * @param evt
     */
    public void contactClicked(ContactListEvent evt);
    
    /**
     * 
     * @param evt
     */
    public void protocolContactClicked(ContactListEvent evt);
    
}