if (annotation.annotationType().equals(javax.persistence.Table.class))
{
Table table = (Table) annotation;
if (table.name().toUpperCase().compareTo(className) != 0)
throw new EntityCheckWrongTableNameException(beanName,table.name());
return true;
}
}