com.keguoyu.zhmvp.base.annotation.Inject Maven / Gradle / Ivy
package com.keguoyu.zhmvp.base.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.SOURCE)
public @interface Inject {
String value() default "";
boolean receiveFromParent() default false;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy