aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2009-05-18 15:48:04 +0000
committerYana Stamcheva <yana@jitsi.org>2009-05-18 15:48:04 +0000
commitce788136c2f1508e9eeb4c8ec610f6faeccdbe50 (patch)
treeb869dfc152fceb5bdbabe91835512154e8bb5a67 /src
parent0cb1c0688b8a097db834fce57b78b1e57c5624cf (diff)
downloadjitsi-ce788136c2f1508e9eeb4c8ec610f6faeccdbe50.zip
jitsi-ce788136c2f1508e9eeb4c8ec610f6faeccdbe50.tar.gz
jitsi-ce788136c2f1508e9eeb4c8ec610f6faeccdbe50.tar.bz2
Class never used. (Reported by Brett Geren)
Diffstat (limited to 'src')
-rw-r--r--src/net/java/sip/communicator/service/gui/ContactAwareComponent.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/net/java/sip/communicator/service/gui/ContactAwareComponent.java b/src/net/java/sip/communicator/service/gui/ContactAwareComponent.java
deleted file mode 100644
index 7cd9cf6..0000000
--- a/src/net/java/sip/communicator/service/gui/ContactAwareComponent.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * 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.service.gui;
-
-import net.java.sip.communicator.service.contactlist.*;
-
-/**
- * The <tt>ContactAwareComponent</tt> is an interface meant to be implemented by
- * all plugin components that are interested of the current contact that they're
- * dealing with.
- *
- * @author Yana Stamcheva
- */
-public interface ContactAwareComponent
-{
- /**
- * Sets the current meta contact. Meant to be used by plugin components that
- * are interested of the current contact. The current contact could be the
- * contact currently selected in the contact list or the contact for the
- * currently selected chat, etc. It depends on the container, where this
- * component is meant to be added.
- *
- * @param metaContact the current meta contact
- */
- public void setCurrentContact(MetaContact metaContact);
-
- /**
- * Sets the current meta group. Meant to be used by plugin components that
- * are interested of the current meta group. The current group is always
- * the currently selected group in the contact list. If the group passed
- * here is null, this means that no group is selected.
- *
- * @param metaGroup the current meta contact group
- */
- public void setCurrentContactGroup(MetaContactGroup metaGroup);
-}