net.jbock.context.ContextScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbock-compiler Show documentation
Show all versions of jbock-compiler Show documentation
jbock annotation processor
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 {
}