toothpick.compiler.memberinjector.targets.FieldInjectionTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toothpick-compiler Show documentation
Show all versions of toothpick-compiler Show documentation
'Annotation Processors of toothpick'
package toothpick.compiler.memberinjector.targets;
import javax.lang.model.element.TypeElement;
import toothpick.compiler.common.generators.targets.ParamInjectionTarget;
public final class FieldInjectionTarget extends ParamInjectionTarget {
public FieldInjectionTarget(TypeElement memberClass, String memberName, Kind kind, TypeElement kindParamClass, Object name) {
super(memberClass, memberName, kind, kindParamClass, name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy