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 ww . j av a 2 s .c om*/ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * ??????View???????????????????????View???????????????????? * ????????????????????????????{@link ViewInject} Annotation?? * * <p> * ????????????View???????Activity?????????????????????? * {@link OnClickMethodInject}????? * </p> * * <p> * ???????????????????????????? * </p> * @see {@link OnClickMethodInject} * * @author Yin Yong */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) @Deprecated public @interface ViewOnClickInject { /** * ?????????????????? * * <p> * ????????????????????????????<br/> * ??????????View?????????Annotation????????<br/> * ??????????????null??? * </p> */ String methodName(); }