Back to project page epgreader-android.
The source code is released under:
Apache License
If you think the Android project epgreader-android 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.jeffpalm.android.epg.app; // w w w . j av a 2s .c om import com.jeffpalm.android.epg.app.OnActivityCreatedNotifier.Listener; final class DefaultOnActivityCreatedNotifier { private Listener mListener; public void setListener(Listener listener) { mListener = listener; } public void notifyListener() { if (mListener != null) { mListener.onActivityCreatedDone(); } } }