Send private messages to listeners.
[xudocci.git] / src / main / java / net / pterodactylus / xdcc / core / event / MessageReceived.java
1 /*
2  * XdccDownloader - MessageReceived.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.xdcc.core.event;
19
20 import net.pterodactylus.irc.Source;
21
22 /**
23  * Notifies a listener that a message was received.
24  *
25  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
26  */
27 public class MessageReceived {
28
29         /** The source of the message. */
30         private final Source source;
31
32         /** The message. */
33         private final String message;
34
35         /**
36          * Creates a new message received event.
37          *
38          * @param source
39          *              The source of the message
40          * @param message
41          *              The message
42          */
43         public MessageReceived(Source source, String message) {
44                 this.source = source;
45                 this.message = message;
46         }
47
48         //
49         // ACCESSORS
50         //
51
52         /**
53          * Returns the source of the message.
54          *
55          * @return The source of the message
56          */
57         public Source source() {
58                 return source;
59         }
60
61         /**
62          * Returns the message.
63          *
64          * @return The message
65          */
66         public String message() {
67                 return message;
68         }
69
70 }