Back to project page foreman.
The source code is released under:
GNU General Public License
If you think the Android project foreman 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.ajaso.android.foreman; /* w w w . j a v a 2s .c om*/ /** * Author: Adam J Jaso, Jr * Copyright: Adam J Jaso, Jr 2014 */ public interface Result { public boolean hasError(); public int errorCode(); public String message(); public Object data(); }