Back to project page Kite.
The source code is released under:
Apache License
If you think the Android project Kite 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 org.kite.async; //from w ww . j a v a2 s .c o m import java.lang.reflect.Method; /** * Utility immutable message-like class for delivering method invocation results. * * @author Nikolay Soroka */ public class MethodResult { public final int code; public final Object result; public final Method method; public MethodResult(int code, Object result, Method method) { this.code = code; this.result = result; this.method = method; } }