Back to project page favouritetv.
The source code is released under:
Copyright (c) 2011 Andr? Prata<andreprata@ua.pt> Eriksson Monteiro<eriksson.monteiro@ua.pt> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associat...
If you think the Android project favouritetv 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 pt.ua.code.favouritetv.service; /*from ww w . j a va 2 s .com*/ import java.lang.ref.WeakReference; import android.os.Binder; public class ContextAlertBinder extends Binder { /** * */ private final WeakReference<ContextAlerter> mService; /** * @param contextAlerter */ ContextAlertBinder(ContextAlerter service) { mService = new WeakReference<ContextAlerter>(service); } public ContextAlerter getService() { return mService.get(); } }