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

net.jbock.context.ContextScope Maven / Gradle / Ivy

There is a newer version: 5.18
Show newest version
package net.jbock.context;

import javax.inject.Scope;
import java.lang.annotation.Retention;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * This is the final scope which is created after validation of all annotated methods has
 * succeeded. It is responsible for the actual code generation.
 *
 * @see GeneratedClass#define()
 */
@Scope
@Retention(RUNTIME)
@interface ContextScope {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy