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; // ww w. j ava2s.com import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Fields with this annotation will be filled * whet service is connected. * * @see org.kite.wire.Wire * @see org.kite.annotations.Provided * @see org.kite.wire.WiredService * @author Nikolay Soroka */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface Wired { }