Home
last modified time | relevance | path

Searched refs:productionMethod (Results 1 – 1 of 1) sorted by relevance

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DDependencyRequest.java224 DependencyRequest forComponentProductionMethod(ExecutableElement productionMethod, in forComponentProductionMethod() argument
226 checkNotNull(productionMethod); in forComponentProductionMethod()
228 checkArgument(productionMethod.getParameters().isEmpty(), in forComponentProductionMethod()
229 "Component production methods must be empty: %s", productionMethod); in forComponentProductionMethod() local
231 Optional<AnnotationMirror> qualifier = InjectionAnnotations.getQualifier(productionMethod); in forComponentProductionMethod()
232 DeclaredType container = getEnclosingType(productionMethod); in forComponentProductionMethod()
240 productionMethod, in forComponentProductionMethod()
246 productionMethod, type, qualifier, container, Optional.<String>absent()); in forComponentProductionMethod()