io.jbock.simple.Inject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-component Show documentation
Show all versions of simple-component Show documentation
annotations for simple-component
package io.jbock.simple;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Identifies injectable constructors and static methods.
*/
@Target({METHOD, CONSTRUCTOR})
@Retention(RUNTIME)
public @interface Inject {
}