diff options
author | Yana Stamcheva <yana@jitsi.org> | 2008-04-28 08:51:58 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2008-04-28 08:51:58 +0000 |
commit | 7eadba9c85cb487cd1578d19cfc60f1407f84191 (patch) | |
tree | 470f4dfd11348f3a62698d0e387bcdb52c2a4f8e /src/net/java/sip/communicator/plugin/exampleplugin | |
parent | dc17476fbc189d7a27e7fc064ff0becbbae22cf9 (diff) | |
download | jitsi-7eadba9c85cb487cd1578d19cfc60f1407f84191.zip jitsi-7eadba9c85cb487cd1578d19cfc60f1407f84191.tar.gz jitsi-7eadba9c85cb487cd1578d19cfc60f1407f84191.tar.bz2 |
"UIN" replaced by identifier or user identifier
Diffstat (limited to 'src/net/java/sip/communicator/plugin/exampleplugin')
-rw-r--r-- | src/net/java/sip/communicator/plugin/exampleplugin/ExamplePluginActivator.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/net/java/sip/communicator/plugin/exampleplugin/ExamplePluginActivator.java b/src/net/java/sip/communicator/plugin/exampleplugin/ExamplePluginActivator.java index b7e7972..1aa9b10 100644 --- a/src/net/java/sip/communicator/plugin/exampleplugin/ExamplePluginActivator.java +++ b/src/net/java/sip/communicator/plugin/exampleplugin/ExamplePluginActivator.java @@ -18,22 +18,21 @@ public class ExamplePluginActivator implements BundleActivator = bc.getServiceReference(UIService.class.getName()); UIService uiService - = (UIService) bc.getService(uiServiceRef); + = (UIService) bc.getService(uiServiceRef); if(uiService.isContainerSupported( UIService.CONTAINER_CONTACT_RIGHT_BUTTON_MENU)) - { + { ExamplePluginMenuItem examplePlugin = new ExamplePluginMenuItem(); uiService.addComponent( UIService.CONTAINER_CONTACT_RIGHT_BUTTON_MENU, examplePlugin); - } } public void stop(BundleContext bc) throws Exception - { - } + { + } } |