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