All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.jbock.simple.Inject Maven / Gradle / Ivy

There is a newer version: 1.024
Show newest version
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 {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy