aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/protocol/event/MessageEvent.java
blob: 3b76914e5ea3a3478735f89cc6a587e7de917ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package net.java.sip.communicator.service.protocol.event;

import java.util.*;

/**
 * Represents an event pertaining to message delivery, reception or failure.
 * @author Emil Ivov
 */
public class MessageEvent
    extends EventObject
{
    /**
     * Serial version UID.
     */
    private static final long serialVersionUID = 0L;

    /**
     * Construcs a new <tt>MessageEvent</tt> instance.
     *
     * @param source Object on which the Event initially occurred
     */
    public MessageEvent(Object source)
    {
        super(source);
    }
}