Back to project page miner.
The source code is released under:
Apache License
If you think the Android project miner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.kolomiyets.miner.bt.notification; //w ww . j a v a 2s. c o m import java.util.ArrayList; public class NotificationManager { ArrayList<BtListener<? extends BtNotification>> listeners = new ArrayList<BtListener<? extends BtNotification>>(); public synchronized void registerListener(BtListener<? extends BtNotification> listener){ listeners.add(listener); } public synchronized void unregisterListener(BtListener<? extends BtNotification> listener) { listeners.remove(listener); } public synchronized void postNotification(BtNotification notification){ for(BtListener<? extends BtNotification> listener: listeners){ listener.postNotification(notification); } } }