Creates a Scope object from the javax.inject.Scope-annotated annotation type.
(TypeElement scopeType)
| 37 | * Creates a {@link Scope} object from the {@link javax.inject.Scope}-annotated annotation type. |
| 38 | */ |
| 39 | static Scope scope(TypeElement scopeType) { |
| 40 | return Scope.scope(SimpleAnnotationMirror.of(scopeType)); |
| 41 | } |
| 42 | |
| 43 | /** Returns a representation for {@link ProductionScope @ProductionScope} scope. */ |
| 44 | static Scope productionScope(Elements elements) { |
no test coverage detected