public interface ContactGroupListener
ContactGroup
s within
the Spark client ContactList
.Modifier and Type | Method and Description |
---|---|
void |
contactGroupPopup(java.awt.event.MouseEvent e,
ContactGroup group)
Notifies the user that a Popup event has occured on the ContactGroup title
bar.
|
void |
contactItemAdded(ContactItem item)
Notifies a user that a new
ContactItem has been added to the ContactGroup. |
void |
contactItemClicked(ContactItem item)
Notifies the user that a ContactItem within the ContactGroup has been clicked.
|
void |
contactItemDoubleClicked(ContactItem item)
Notifies the user that a ContactItem within the ContactGroup has been double-clicked.
|
void |
contactItemRemoved(ContactItem item)
Notifies the user that a
ContactItem has been removed from a ContactGroup. |
void |
showPopup(java.awt.event.MouseEvent e,
java.util.Collection<ContactItem> items)
Deprecated.
see
ContextMenuListener |
void |
showPopup(java.awt.event.MouseEvent e,
ContactItem item)
Deprecated.
|
void contactItemAdded(ContactItem item)
ContactItem
has been added to the ContactGroup.item
- the ContactItem.void contactItemRemoved(ContactItem item)
ContactItem
has been removed from a ContactGroup.item
- the ContactItem removed.void contactItemDoubleClicked(ContactItem item)
item
- the ContactItem double clicked.void contactItemClicked(ContactItem item)
item
- the ContactItem clicked.void showPopup(java.awt.event.MouseEvent e, ContactItem item)
ContextMenuListener
e
- the MouseEvent that triggered the event.item
- the ContactItem clicked within the ContactGroup.void showPopup(java.awt.event.MouseEvent e, java.util.Collection<ContactItem> items)
ContextMenuListener
e
- the MouseEvent that triggered the event.items
- the ContactItems within the ContactGroup.void contactGroupPopup(java.awt.event.MouseEvent e, ContactGroup group)
e
- the MouseEvent that triggered the event.group
- the ContactGroup.