cddf8db3cd29206492491558c2c920a121acb34a
[Sone.git] / src / main / java / net / pterodactylus / sone / core / UpdateListenerManager.java
1 /*
2  * Sone - UpdateListenerManager.java - Copyright © 2011 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.sone.core;
19
20 import net.pterodactylus.util.event.AbstractListenerManager;
21 import net.pterodactylus.util.version.Version;
22
23 /**
24  * Listener manager for {@link UpdateListener} events.
25  *
26  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
27  */
28 public class UpdateListenerManager extends AbstractListenerManager<Void, UpdateListener> {
29
30         /**
31          * Creates a new update listener manager.
32          */
33         public UpdateListenerManager() {
34                 super(null);
35         }
36
37         //
38         // ACTIONS
39         //
40
41         /**
42          * Notifies all listeners that a new version has been found.
43          *
44          * @param version
45          *            The new version
46          * @param releaseTime
47          *            The release time of the new version
48          * @param latestEdition
49          *            The latest edition of the Sone homepage
50          */
51         void fireUpdateFound(Version version, long releaseTime, long latestEdition) {
52                 for (UpdateListener updateListener : getListeners()) {
53                         updateListener.updateFound(version, releaseTime, latestEdition);
54                 }
55         }
56
57 }