Back to project page ixming-android-inject.
The source code is released under:
Apache License
If you think the Android project ixming-android-inject 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.ixming.android.inject.annotation; /*from w w w. jav a 2 s .c o m*/ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.ixming.android.inject.ResTargetType; /** * ??????Activity??View???????????? * <br/> * ????????????????????????????? * <br/> * * @author Yin Yong * @version 1.0 */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface ResInject { /** * res/ ?????ID? */ int id(); /** * ????????????????????? * <p> * ????????string????????????????{@link ResTargetType#String}? * ????string?????????????????????????{@link ResTargetType#Text}? * </p> * @see {@link ResTargetType} */ ResTargetType type(); }