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.sample; // w w w.jav a 2 s. c o m import org.kite.annotations.AsyncMethod; public interface Substractor { final int ADD_RESULT = 100; int sub(int a, int b); @AsyncMethod(ADD_RESULT) Integer asyncAdd(int a, int b); }