Back to project page compCellScope.
The source code is released under:
MIT License
If you think the Android project compCellScope listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * The purpose of this class is to extend the BluetoothService objects to a global context * see: http://stackoverflow.com/questions/12818898/android-blutoothchatservice-use-in-multiple-classes * // w w w . j a v a 2 s. c o m */ package com.wallerlab.compcellscope; import android.app.Application; import com.wallerlab.compcellscope.BluetoothService; public class BluetoothApplicationClass extends Application { private BluetoothService mBluetoothService; public BluetoothApplicationClass() { super(); } @Override public void onCreate() { super.onCreate(); } public BluetoothService getBluetoothService() { return mBluetoothService; } public void setBluetoothService(BluetoothService mBluetoothService) { this.mBluetoothService = mBluetoothService; } }