m_tableGenerator = new TableGeneratorMetadata(getAnnotation(TableGenerator.class), accessibleObject);
}
// Set the return insert if one is present.
if (isAnnotationPresent(ReturnInsert.class)) {
m_returnInsert = new ReturnInsertMetadata(getAnnotation(ReturnInsert.class), accessibleObject);
}
// Set the return update if one is present.
m_returnUpdate = isAnnotationPresent(ReturnUpdate.class);
}