}
@Override
public InjectAnnotationProcessor createAnnotationProcessor(Object adaptable, AnnotatedElement element) {
// check if the element has the expected annotation
RequestAttribute annotation = element.getAnnotation(RequestAttribute.class);
if (annotation != null) {
return new RequestAttributeAnnotationProcessor(annotation);
}
return null;
}