* @throws ClassNotFoundException
*/
public DmwWrapper createWrapper(DmcUncheckedObject uco) throws ResultException, DmcValueException, ClassNotFoundException {
DmwWrapper rc = null;
DmcObject dmo = null;
ClassDefinition cd = null;
AttributeDefinition ad = null;
if ((cd = schema.isClass((String)uco.classes.get(0))) == null){
DebugInfo.debug("UncheckedObject:\n\n" + uco.toOIF());
ResultException ex = new ResultException();
ex.result.addResult(Result.ERROR,"Unknown class: " + uco.classes.get(0));
throw(ex);
}
rc = cd.newInstance();
dmo = rc.getDmcObject();
// And add any auxiliary classes if we have them
for(int i=1; i<uco.classes.size(); i++){
if ((cd = schema.isClass((String)uco.classes.get(i))) == null){