Android Open Source - compCellScope Bluetooth Application Class






From Project

Back to project page compCellScope.

License

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.

Java Source Code

/*
 * 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;
    }

}




Java Source Code List

com.wallerlab.compcellscope.AcquireActivity.java
com.wallerlab.compcellscope.AcquireActivity.java
com.wallerlab.compcellscope.AcquireSettings.java
com.wallerlab.compcellscope.AcquireSurfaceView.java
com.wallerlab.compcellscope.AcquireSurfaceView.java
com.wallerlab.compcellscope.BluetoothActivity.java
com.wallerlab.compcellscope.BluetoothApplicationClass.java
com.wallerlab.compcellscope.BluetoothApplicationClass.java
com.wallerlab.compcellscope.BluetoothDeviceListActivity.java
com.wallerlab.compcellscope.BluetoothDeviceListActivity.java
com.wallerlab.compcellscope.BluetoothService.java
com.wallerlab.compcellscope.BluetoothService.java
com.wallerlab.compcellscope.BurstModeActivity.java
com.wallerlab.compcellscope.DirectoryChooserDialog.java
com.wallerlab.compcellscope.Folder_Chooser.java
com.wallerlab.compcellscope.ImageProgressTask.java
com.wallerlab.compcellscope.ImageProgressTask.java
com.wallerlab.compcellscope.Image_Gallery.java
com.wallerlab.compcellscope.MainActivity.java
com.wallerlab.compcellscope.MainActivity.java
com.wallerlab.compcellscope.MultiModeViewActivity.java
com.wallerlab.compcellscope.MultiModeView.java
com.wallerlab.compcellscope.PortraitCameraView.java