void onAttribute(
JpaAttribute attribute,
AnnotatedElement element,
AnnotationProcessorStack context) {
JpaJoinTable joinTable = new JpaJoinTable(element
.getAnnotation(JoinTable.class));
if (attribute instanceof JpaOneToMany) {
((JpaOneToMany) attribute).setJoinTable(joinTable);
}