m_tableGenerator = new TableGeneratorMetadata(getAnnotation(JPA_TABLE_GENERATOR), this);
}
// Set the table generator if one is present.
if (isAnnotationPresent(UuidGenerator.class)) {
m_uuidGenerator = new UuidGeneratorMetadata(getAnnotation(UuidGenerator.class), this);
}
// Set the return insert if one is present.
if (isAnnotationPresent(ReturnInsert.class)) {
m_returnInsert = new ReturnInsertMetadata(getAnnotation(ReturnInsert.class), this);