@Override
void onManagedClass(
JpaManagedClass managedClass,
AnnotatedElement element,
AnnotationProcessorStack context) {
JpaManyToOne attribute = new JpaManyToOne(element
.getAnnotation(ManyToOne.class));
managedClass.getAttributes().getManyToOneRelationships().add(attribute);
context.push(attribute);
}