m_column = new ColumnMetadata(getAnnotation(JPA_COLUMN), this);
}
// Set the collection table if one is defined.
if (isAnnotationPresent(JPA_COLLECTION_TABLE)) {
setCollectionTable(new CollectionTableMetadata(getAnnotation(JPA_COLLECTION_TABLE), this, true));
}
// Set the composite member if one is defined.
if (isAnnotationPresent(CompositeMember.class)) {
m_compositeMember = (String) getAnnotation(CompositeMember.class).getAttributeString("value");