Searched refs:componentAnnotation (Results 1 – 5 of 5) sorted by relevance
33 private final Class<? extends Annotation> componentAnnotation; field in AbstractComponentProcessingStep42 Class<? extends Annotation> componentAnnotation, in AbstractComponentProcessingStep() argument49 this.componentAnnotation = componentAnnotation; in AbstractComponentProcessingStep()64 for (Element element : elementsByAnnotation.get(componentAnnotation)) { in process()
70 static ImmutableList<TypeMirror> getComponentModules(AnnotationMirror componentAnnotation) { in getComponentModules() argument71 checkNotNull(componentAnnotation); in getComponentModules()72 return convertClassArrayToListOfTypes(componentAnnotation, MODULES_ATTRIBUTE); in getComponentModules()77 static ImmutableList<TypeMirror> getComponentDependencies(AnnotationMirror componentAnnotation) { in getComponentDependencies() argument78 checkNotNull(componentAnnotation); in getComponentDependencies()79 return convertClassArrayToListOfTypes(componentAnnotation, DEPENDENCIES_ATTRIBUTE); in getComponentDependencies()
545 Optional<AnnotationMirror> componentAnnotation = in validateComponentHierarchy() local547 if (componentAnnotation.isPresent()) { in validateComponentHierarchy()551 MoreTypes.asTypeElements(getComponentDependencies(componentAnnotation.get())); in validateComponentHierarchy()583 descriptor.componentAnnotation()); in validateDependencyScopes()595 descriptor.componentAnnotation()); in validateDependencyScopes()615 descriptor.componentAnnotation()); in validateDependencyScopes()692 Optional<AnnotationMirror> componentAnnotation = in validateScopeHierarchy() local694 if (componentAnnotation.isPresent()) { in validateScopeHierarchy()696 MoreTypes.asTypeElements(getComponentDependencies(componentAnnotation.get()))); in validateScopeHierarchy()763 message.toString(), componentType, subject.componentDescriptor().componentAnnotation()); in validateComponentScope()
67 Class<? extends Annotation> componentAnnotation = componentType.annotationType(); in validate() local71 if (!isAnnotationPresent(componentElement, componentAnnotation)) { in validate()
126 abstract AnnotationMirror componentAnnotation(); in componentAnnotation() method in ComponentDescriptor