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 ww w.j a v a2s .c o m import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * ??????Activity??View????View?????? * <br/> * ???????????????????????????? * <br/> * * @author Yin Yong */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface ViewInject { /** * ?????????View?ID? */ int id(); /** * ??????????RootView??????????ID????? * ?????????????????????????ID??????? * <p> * ??????????????????? * </p> * <p> * <strong>????????</strong> * View?????????????????View?????????????<br/> * ????????????ListView??????????ID?????parentId?????????? * ??????????????????? * </p> */ int parentId() default 0; }