net.jbock.processor.ProcessorComponent 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 dagger.Component;
/**
* @see ProcessorScope
*/
@Component(modules = ProcessorModule.class)
@ProcessorScope
interface ProcessorComponent {
ParameterMethodProcessingStep parameterMethodProcessingStep();
ConverterProcessingStep converterProcessingStep();
CommandProcessingStep commandProcessingStep();
@Component.Factory
interface Factory {
ProcessorComponent create(ProcessorModule module);
}
}