//read all classes
String [] classnames = this.properties.getKnownClassNames ();
for (int i = classnames.length - 1; i >= 0; i--)
{
JDOClass clazz = getJDOClass (classnames [i]); //should be always != null
//if the class is persistence it cannot be a second class object type
if (clazz.isPersistent () && secondClassObjectTypes.contains (clazz.getName ()))
{
throw new JDOMetaDataUserException ("ERROR: Parsing meta data properties: " +
"The persistent-capable class '" + clazz.getName () +
"' is second class object type.");
}
}
} //JDOMetaDataPropertyImpl.readProperties()