}
type.getExtensibilityElements().add(new ContextExtensibilityElement(method));
}
public void visitField(Field field, ComponentType type) throws ConfigurationLoadException {
Context context = field.getAnnotation(Context.class);
if (context == null) {
return;
}
type.getExtensibilityElements().add(new ContextExtensibilityElement(field));
}