net.jbock.processor.ProcessorScope 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.processor;
import javax.inject.Scope;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Outermost scope,
* contains {@link javax.lang.model.util.Elements Elements}
* and {@link javax.lang.model.util.Types Types}.
*/
@Scope
@Retention(RUNTIME)
@interface ProcessorScope {
}