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 .ja v a 2s. co m*/ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * <p> * ???????View???????Activity????????????????????????????? * </p> * <p> * ???????????????????????????? * </p> * @author Yin Yong */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface OnClickMethodInject { /** * ??View?ID???View?????????????????? * * <p> * ????????????????????????????<br/> * ??????????View???????View??????????Annotation?????ID?View?????<br/> * ??????????????null??? * </p> */ int id(); /** * ??????????RootView??????????ID????? * ?????????????????????????ID??????? * <p> * ??????????????????? * </p> * <p> * <strong>????????</strong> * View?????????????????View?????????????<br/> * ????????????ListView??????????ID?????parentId?????????? * ??????????????????? * </p> */ int parentId() default 0; }