Back to project page SmartTools.
The source code is released under:
GNU General Public License
If you think the Android project SmartTools 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.nj.simba.connect; //from w w w. ja v a 2 s .c o m import com.nj.simba.base.IDeviceReqListener; public class DeviceMessage { int what; IDeviceReqListener who; public DeviceMessage(int what, IDeviceReqListener who) { this.what = what; this.who = who; } }