afb6acc3abc978607aaff003f93dae3c51b54a60
[xudocci.git] / src / main / java / net / pterodactylus / irc / event / PrivateNoticeReceived.java
1 /*
2  * XdccDownloader - PrivateNoticeReceived.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.irc.event;
19
20 import net.pterodactylus.irc.Connection;
21 import net.pterodactylus.irc.Reply;
22
23 /**
24  * Notifies a listener that a notice was received.
25  *
26  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
27  */
28 public class PrivateNoticeReceived extends AbstractReplyEvent {
29
30         /** The target of the notice. */
31         private final String target;
32
33         /** The text of the notice. */
34         private final String text;
35
36         /**
37          * Creates a new notice received event.
38          *
39          * @param connection
40          *              The connection the event occured on
41          * @param reply
42          *              The reply that caused the event
43          */
44         public PrivateNoticeReceived(Connection connection, Reply reply) {
45                 super(connection, reply);
46                 this.target = reply.parameters().get(0);
47                 this.text = reply.parameters().get(1);
48         }
49
50         //
51         // ACCESSORS
52         //
53
54         /**
55          * Returns the target of the notice.
56          *
57          * @return The target of the notice
58          */
59         public String target() {
60                 return target;
61         }
62
63         /**
64          * Returns the text of the notice.
65          *
66          * @return The text of the notice
67          */
68         public String text() {
69                 return text;
70         }
71
72 }