From 216ba08327fbf2434340f3382c913e37d2ff5e7c Mon Sep 17 00:00:00 2001 From: Lyubomir Marinov Date: Fri, 2 Oct 2009 19:23:01 +0000 Subject: Fixes incorrect javadocs in a ChatRoom-related event and its respective AdHocChatRoom duplicate. --- .../protocol/event/AdHocChatRoomMessageDeliveryFailedEvent.java | 9 +++++---- .../protocol/event/ChatRoomMessageDeliveryFailedEvent.java | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) (limited to 'src/net/java') diff --git a/src/net/java/sip/communicator/service/protocol/event/AdHocChatRoomMessageDeliveryFailedEvent.java b/src/net/java/sip/communicator/service/protocol/event/AdHocChatRoomMessageDeliveryFailedEvent.java index 8261528..045d82c 100644 --- a/src/net/java/sip/communicator/service/protocol/event/AdHocChatRoomMessageDeliveryFailedEvent.java +++ b/src/net/java/sip/communicator/service/protocol/event/AdHocChatRoomMessageDeliveryFailedEvent.java @@ -70,11 +70,11 @@ public class AdHocChatRoomMessageDeliveryFailedEvent private Message message = null; /** - * Creates an AdHocChatRoomMessageDeliveryFailedEvent indicating - * failure of delivery of the source message to the specified - * to contact. + * Creates a AdHocChatRoomMessageDeliveryFailedEvent indicating + * failure of delivery of a message to the specified Contact in + * the specified AdHocChatRoom. * - * @param source the Message whose delivery this event represents. + * @param source the AdHocChatRoom in which the message was sent * @param to the Contact that this message was sent to. * @param errorCode an errorCode indicating the reason of the failure. * @param timestamp the exact Date when it was determined that delivery @@ -94,6 +94,7 @@ public class AdHocChatRoomMessageDeliveryFailedEvent this.timestamp = timestamp; this.message = message; } + /** * Returns a reference to the Contact that the source * (failed) Message was sent to. diff --git a/src/net/java/sip/communicator/service/protocol/event/ChatRoomMessageDeliveryFailedEvent.java b/src/net/java/sip/communicator/service/protocol/event/ChatRoomMessageDeliveryFailedEvent.java index eb44dce..e593639 100644 --- a/src/net/java/sip/communicator/service/protocol/event/ChatRoomMessageDeliveryFailedEvent.java +++ b/src/net/java/sip/communicator/service/protocol/event/ChatRoomMessageDeliveryFailedEvent.java @@ -69,11 +69,11 @@ public class ChatRoomMessageDeliveryFailedEvent private Message message = null; /** - * Creates a MessageDeliveryFailedEvent indicating failure of - * delivery of the source message to the specified to - * contact. + * Creates a ChatRoomMessageDeliveryFailedEvent indicating failure + * of delivery of a message to the specified ChatRoomMember in the + * specified ChatRoom. * - * @param source the Message whose delivery this event represents. + * @param source the ChatRoom in which the message was sent * @param to the ChatRoomMember that this message was sent to. * @param errorCode an errorCode indicating the reason of the failure. * @param timestamp the exacte Date when it was determined that delivery @@ -93,6 +93,7 @@ public class ChatRoomMessageDeliveryFailedEvent this.timestamp = timestamp; this.message = message; } + /** * Returns a reference to the ChatRoomMember that the source * (failed) Message was sent to. -- cgit v1.1