Back to project page BTSerialConsole.
The source code is released under:
MIT License
If you think the Android project BTSerialConsole 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.neykov.bluetoothserialconsole.services; /* ww w . j av a 2 s . c o m*/ import android.os.Binder; public class SerialConnectionServiceBinder extends Binder { private final SerialConnectionService service; public SerialConnectionServiceBinder(SerialConnectionService service) { this.service = service; } public SerialConnectionService getService() { return service; } }