diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2012-06-03 20:53:59 +0000 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2012-06-03 20:53:59 +0000 |
commit | b9eca03e31fb639a177c881dff8fa43a2e9c072b (patch) | |
tree | 443416fb949852fa02e49f87e09dca9f42efe281 /src/net/java/sip/communicator/service | |
parent | 0e3e208d5f3e20be48aeb9625321d804e4e485b9 (diff) | |
download | jitsi-b9eca03e31fb639a177c881dff8fa43a2e9c072b.zip jitsi-b9eca03e31fb639a177c881dff8fa43a2e9c072b.tar.gz jitsi-b9eca03e31fb639a177c881dff8fa43a2e9c072b.tar.bz2 |
Supports vCard e-mail addresses when matching Microsoft Outlook contacts to Jitsi contacts for presence. The functionality is still to be implemented for the cases of IM and VoIP.
Diffstat (limited to 'src/net/java/sip/communicator/service')
-rw-r--r-- | src/net/java/sip/communicator/service/gui/UIService.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/gui/UIService.java b/src/net/java/sip/communicator/service/gui/UIService.java index d1cbf81..e281828 100644 --- a/src/net/java/sip/communicator/service/gui/UIService.java +++ b/src/net/java/sip/communicator/service/gui/UIService.java @@ -440,7 +440,19 @@ public interface UIService */ public void repaintUI(); + /** + * Creates a new <tt>Call</tt> with a specific set of participants. + * + * @param participants an array of <tt>String</tt> values specifying the + * participants to be included into the newly created <tt>Call</tt> + */ public void createCall(String[] participants); + /** + * Starts a new <tt>Chat</tt> with a specific set of participants. + * + * @param participants an array of <tt>String</tt> values specifying the + * participants to be included into the newly created <tt>Chat</tt> + */ public void startChat(String[] participants); }
\ No newline at end of file |