Back to project page m-app.
The source code is released under:
GNU General Public License
If you think the Android project m-app 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.example.app; /* ww w .j ava2 s . c o m*/ public class Status { private int _id; private String status_message; public Status() { } public int getId() { return _id; } public void setId(int _id) { this._id = _id; } public String getStatusMessage() { return status_message; } public void setStatusMessage(String status_message) { this.status_message = status_message; } }