From f43ef94f586fb2cac0cca8c62cf8d2c84861ee4b Mon Sep 17 00:00:00 2001 From: Damian Minkov Date: Tue, 21 Aug 2012 15:03:33 +0000 Subject: Adds contact removed to the ContactQuery listener, that will give the option to remove a contact once it has been shown in the ui after a query. --- .../service/contactsource/ContactRemovedEvent.java | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/net/java/sip/communicator/service/contactsource/ContactRemovedEvent.java (limited to 'src/net/java/sip/communicator/service/contactsource/ContactRemovedEvent.java') diff --git a/src/net/java/sip/communicator/service/contactsource/ContactRemovedEvent.java b/src/net/java/sip/communicator/service/contactsource/ContactRemovedEvent.java new file mode 100644 index 0000000..10c4266 --- /dev/null +++ b/src/net/java/sip/communicator/service/contactsource/ContactRemovedEvent.java @@ -0,0 +1,61 @@ +/* + * Jitsi, the OpenSource Java VoIP and Instant Messaging client. + * + * Distributable under LGPL license. + * See terms of license at gnu.org. + */ +package net.java.sip.communicator.service.contactsource; + +import java.util.*; + +/** + * The ContactRemovedEvent indicates that a + * SourceContact has been removed from the result of a + * ContactQuery. + * @author Yana Stamcheva + */ +public class ContactRemovedEvent + extends EventObject +{ + /** + * Serial version UID. + */ + private static final long serialVersionUID = 0L; + + /** + * The contact that has been removed. + */ + private final SourceContact contact; + + /** + * Creates a ContactRemovedEvent by specifying the contact search + * source and the removed searchContact. + * @param source the source that triggered this event + * @param contact the removed contact + */ + public ContactRemovedEvent(ContactQuery source, + SourceContact contact) + { + super(source); + + this.contact = contact; + } + + /** + * Returns the ContactQuery that triggered this event. + * @return the ContactQuery that triggered this event + */ + public ContactQuery getQuerySource() + { + return (ContactQuery) source; + } + + /** + * Returns the removed contact. + * @return the removed contact + */ + public SourceContact getContact() + { + return contact; + } +} -- cgit v1.1