diff options
author | Yana Stamcheva <yana@jitsi.org> | 2011-02-21 19:20:24 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2011-02-21 19:20:24 +0000 |
commit | c6971afd001ac65d3bce483bdd946bc2afaf53fb (patch) | |
tree | 4522c84b98fa0b24072e6b245bc278e84962c6df /src/net/java/sip/communicator/impl/callhistory | |
parent | d72d64b136110ecd15d1b035eaefb627e9752190 (diff) | |
download | jitsi-c6971afd001ac65d3bce483bdd946bc2afaf53fb.zip jitsi-c6971afd001ac65d3bce483bdd946bc2afaf53fb.tar.gz jitsi-c6971afd001ac65d3bce483bdd946bc2afaf53fb.tar.bz2 |
Showing categories and labels for contact details coming from AddressBook or Outlook.
Diffstat (limited to 'src/net/java/sip/communicator/impl/callhistory')
-rw-r--r-- | src/net/java/sip/communicator/impl/callhistory/CallHistorySourceContact.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/impl/callhistory/CallHistorySourceContact.java b/src/net/java/sip/communicator/impl/callhistory/CallHistorySourceContact.java index 4de7ba9..7c40dff 100644 --- a/src/net/java/sip/communicator/impl/callhistory/CallHistorySourceContact.java +++ b/src/net/java/sip/communicator/impl/callhistory/CallHistorySourceContact.java @@ -278,6 +278,19 @@ public class CallHistorySourceContact implements SourceContact } /** + * Returns a list of all <tt>ContactDetail</tt>s corresponding to the given + * category. + * @param category the <tt>OperationSet</tt> class we're looking for + * @return a list of all <tt>ContactDetail</tt>s corresponding to the given + * category + */ + public List<ContactDetail> getContactDetails(String category) + { + // We don't support category for call history details, so we return null. + return null; + } + + /** * Returns the preferred <tt>ContactDetail</tt> for a given * <tt>OperationSet</tt> class. * @param operationSet the <tt>OperationSet</tt> class, for which we would |