Android Open Source - My-Lost-Device Device






From Project

Back to project page My-Lost-Device.

License

The source code is released under:

GNU General Public License

If you think the Android project My-Lost-Device 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

package com.rgap.mylostdevice;
//ww  w. ja  v  a  2s. c om
/**
 * Created by rgap on 19/05/13.
 */
class Device {

    public String devtype;
    public String devlocation;
    public String devstate;

    public Device(String devtype, String devlocation, String devstate){
        devtype=devtype;
        devlocation=devlocation;
        devstate=devstate;
    }
}




Java Source Code List

com.rgap.mylostdevice.ActivityLogin.java
com.rgap.mylostdevice.ActivityRegister.java
com.rgap.mylostdevice.ActivityTabs.java
com.rgap.mylostdevice.Device.java