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.annotations; /*from w w w. jav a2 s . c o m*/ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Callbacks to {@link org.kite.annotations.AsyncMethod} * that will be called by given {@link AsyncMethod#value()} code. * * @see org.kite.annotations.Provided * @author Nikolay Soroka */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface AsyncResult { /**Code for callback, corresponding * to <code>AsyncMethod</code> that was * invoked. * */ int value(); }