idClassName = ((Class)annotationValues.get("value")).getName();
}
else if (annName.equals(JPAAnnotationUtils.INHERITANCE))
{
// Only valid in the root class
InheritanceType inhType = (InheritanceType)annotationValues.get("strategy");
inheritanceStrategyForTree = inhType.toString();
if (inhType == InheritanceType.JOINED)
{
inheritanceStrategy = InheritanceStrategy.NEW_TABLE.toString();
}
else if (inhType == InheritanceType.TABLE_PER_CLASS)