Back to project page sharemore.
The source code is released under:
GNU General Public License
If you think the Android project sharemore 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.moarub.util; //from www .ja v a 2 s . c om public class DeshorteningResult { private String fResValue; private int fStatusCode; public int getStatusCode() { return fStatusCode; } public DeshorteningResult(String res, int status) { super(); setResValue(res); fStatusCode = status; } public String getResValue() { return fResValue; } public void setResValue(String res) { fResValue = res; } }