Back to project page tnc1-android-config.
The source code is released under:
Apache License
If you think the Android project tnc1-android-config 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.mobilinkd.tncconfig; //from w ww .j av a 2 s .c o m import android.app.Application; import android.os.Handler; public class TncConfigApplication extends Application { private BluetoothTncService mTncService = null; private Handler mHandler = null; @Override public void onCreate() { super.onCreate(); } public BluetoothTncService getBluetoothTncService() { return mTncService; } public void setBluetoothTncService(BluetoothTncService tncService) { mTncService = tncService; } public Handler getHandler() { return mHandler; } public void setHandler(Handler handler) { mHandler = handler; } }