Back to project page aperi.
The source code is released under:
Apache License
If you think the Android project aperi 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.hv15.aperi.services; // ww w .j a v a 2 s . com import android.os.Binder; public class LocalSocketBinder extends Binder { private SocketService mService; public LocalSocketBinder(SocketService service) { mService = service; } public SocketService getService() { return mService; } }