Remove dependency on utils package.
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / highlevel / FcpClientListenerManager.java
1 /*
2  * jFCPlib - FcpClientListenerManager.java - Copyright © 2009 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 2 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, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 package net.pterodactylus.fcp.highlevel;
20
21 import java.util.List;
22 import java.util.concurrent.CopyOnWriteArrayList;
23
24 /**
25  * Manages {@link FcpClientListener}s and fires events.
26  *
27  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
28  */
29 public class FcpClientListenerManager {
30
31         private final FcpClient source;
32         private final List<FcpClientListener> listeners = new CopyOnWriteArrayList<FcpClientListener>();
33
34         /**
35          * Creates a new FCP client listener manager.
36          *
37          * @param fcpClient
38          *            The source FCP client
39          */
40         public FcpClientListenerManager(FcpClient fcpClient) {
41                 this.source = fcpClient;
42         }
43
44         private FcpClient getSource() {
45                 return source;
46         }
47
48         public List<FcpClientListener> getListeners() {
49                 return listeners;
50         }
51
52         /**
53          * Notifies all listeners that the FCP client was disconnected.
54          *
55          * @see FcpClientListener#fcpClientDisconnected(FcpClient)
56          */
57         public void fireFcpClientDisconnected() {
58                 for (FcpClientListener fcpClientListener : getListeners()) {
59                         fcpClientListener.fcpClientDisconnected(getSource());
60                 }
61         }
62
63         public void addListener(FcpClientListener fcpClientListener) {
64                 listeners.add(fcpClientListener);
65         }
66
67         public void removeListener(FcpClientListener fcpClientListener) {
68                 listeners.remove(fcpClientListener);
69         }
70
71 }