diff --git a/src/net/java/sip/communicator/service/callhistory/CallHistoryService.java b/src/net/java/sip/communicator/service/callhistory/CallHistoryService.java index 510455b89..93168bccd 100644 --- a/src/net/java/sip/communicator/service/callhistory/CallHistoryService.java +++ b/src/net/java/sip/communicator/service/callhistory/CallHistoryService.java @@ -26,7 +26,7 @@ public interface CallHistoryService * @param contact MetaContact which contacts participate in * the returned calls * @param startDate Date the start date of the calls - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findByStartDate(MetaContact contact, Date startDate) @@ -39,7 +39,7 @@ public Collection findByStartDate(MetaContact contact, Date startDat * @param contact MetaContact which contacts participate in * the returned calls * @param endDate Date the end date of the calls - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findByEndDate(MetaContact contact, Date endDate) @@ -53,7 +53,7 @@ public Collection findByEndDate(MetaContact contact, Date endDate) * the returned calls * @param startDate Date the start date of the calls * @param endDate Date the end date of the calls - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findByPeriod(MetaContact contact, Date startDate, Date endDate) @@ -64,7 +64,7 @@ public Collection findByPeriod(MetaContact contact, Date startDate, * Returns all the calls made after the given date * * @param startDate Date the start date of the calls - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findByStartDate(Date startDate) @@ -74,7 +74,7 @@ public Collection findByStartDate(Date startDate) * Returns all the calls made before the given date * * @param endDate Date the end date of the calls - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findByEndDate(Date endDate) @@ -85,7 +85,7 @@ public Collection findByEndDate(Date endDate) * * @param startDate Date the start date of the calls * @param endDate Date the end date of the calls - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findByPeriod(Date startDate, Date endDate) @@ -98,7 +98,7 @@ public Collection findByPeriod(Date startDate, Date endDate) * @param contact MetaContact which contacts participate in * the returned calls * @param count calls count - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findLast(MetaContact contact, int count) @@ -109,16 +109,16 @@ public Collection findLast(MetaContact contact, int count) * in the supplied metacontact * * @param count calls count - * @return Collection of CallRecords with CallParticipantRecord + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findLast(int count) throws RuntimeException; /** - * Find the calls made by the supplied participant address - * @param address String the address of the participant - * @return Collection of CallRecords with CallParticipantRecord + * Find the calls made by the supplied peer address + * @param address String the address of the peer + * @return Collection of CallRecords with CallPeerRecord * @throws RuntimeException */ public Collection findByPeer(String address)