Home
last modified time | relevance | path

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

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DProducesMethodValidator.java80 Produces producesAnnotation = producesMethodElement.getAnnotation(Produces.class); in validate() local
81 checkArgument(producesAnnotation != null); in validate()
109 if (!producesAnnotation.type().equals(Produces.Type.MAP) in validate()
117 switch (producesAnnotation.type()) { in validate()
DProductionBinding.java111 Produces producesAnnotation = producesMethod.getAnnotation(Produces.class); in forProducesMethod() local
112 checkArgument(producesAnnotation != null); in forProducesMethod()
137 producesAnnotation.type(), in forProducesMethod()
DKey.java235 Produces producesAnnotation = method.getAnnotation(Produces.class);
236 checkArgument(producesAnnotation != null);
248 Optional.of(producesAnnotation.type()));