if (isAnnotationPresent(OrderColumn.class)) {
String correctionType = null;
if (isAnnotationPresent(OrderCorrection.class)) {
correctionType = getAnnotation(OrderCorrection.class).getAttribute("value").toString();
}
m_orderColumn = new OrderColumnMetadata(getAnnotation(OrderColumn.class), accessibleObject, correctionType);
}
// Set the map key enumerated if one is defined.
if (isAnnotationPresent(MapKeyEnumerated.class)) {
m_mapKeyEnumerated = new EnumeratedMetadata(getAnnotation(MapKeyEnumerated.class), accessibleObject);