Back to project page Instabackground.
The source code is released under:
Apache License
If you think the Android project Instabackground 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 es.expilu.instabackground.model; /* ww w .ja v a2s . c o m*/ public class Meta { private int code; private String error_type; private String error_message; public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getError_type() { return error_type; } public void setError_type(String error_type) { this.error_type = error_type; } public String getError_message() { return error_message; } public void setError_message(String error_message) { this.error_message = error_message; } }