diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2009-10-02 19:23:01 +0000 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2009-10-02 19:23:01 +0000 |
commit | 216ba08327fbf2434340f3382c913e37d2ff5e7c (patch) | |
tree | 9062286d0239789af5b6bc90b1dec5a8cada0ede /src/net/java | |
parent | fff438a56eb28d36d79d57569fd1c83eece67aec (diff) | |
download | jitsi-216ba08327fbf2434340f3382c913e37d2ff5e7c.zip jitsi-216ba08327fbf2434340f3382c913e37d2ff5e7c.tar.gz jitsi-216ba08327fbf2434340f3382c913e37d2ff5e7c.tar.bz2 |
Fixes incorrect javadocs in a ChatRoom-related event and its respective AdHocChatRoom duplicate.
Diffstat (limited to 'src/net/java')
2 files changed, 10 insertions, 8 deletions
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 <tt>AdHocChatRoomMessageDeliveryFailedEvent</tt> indicating - * failure of delivery of the <tt>source</tt> message to the specified - * <tt>to</tt> contact. + * Creates a <tt>AdHocChatRoomMessageDeliveryFailedEvent</tt> indicating + * failure of delivery of a message to the specified <tt>Contact</tt> in + * the specified <tt>AdHocChatRoom</tt>. * - * @param source the <tt>Message</tt> whose delivery this event represents. + * @param source the <tt>AdHocChatRoom</tt> in which the message was sent * @param to the <tt>Contact</tt> 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 <tt>Contact</tt> that the source * (failed) <tt>Message</tt> 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 <tt>MessageDeliveryFailedEvent</tt> indicating failure of - * delivery of the <tt>source</tt> message to the specified <tt>to</tt> - * contact. + * Creates a <tt>ChatRoomMessageDeliveryFailedEvent</tt> indicating failure + * of delivery of a message to the specified <tt>ChatRoomMember</tt> in the + * specified <tt>ChatRoom</tt>. * - * @param source the <tt>Message</tt> whose delivery this event represents. + * @param source the <tt>ChatRoom</tt> in which the message was sent * @param to the <tt>ChatRoomMember</tt> 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 <tt>ChatRoomMember</tt> that the source * (failed) <tt>Message</tt> was sent to. |