// Finally manage "local" slots through the introspector
if (introspector != null) {
String[] names = schema.getOwnNames();
for (int i = 0; i < names.length; ++i) {
String slotName = names[i];
AbsObject absSlotValue = abs.getAbsObject(slotName);
if (absSlotValue != null) {
Object slotValue = null;
if (absSlotValue.getAbsType() == AbsObject.ABS_AGGREGATE) {
// Manage as aggregate
slotValue = introspector.internalizeAggregate(slotName, (AbsAggregate)absSlotValue, schema, globalOnto);
} else {
// Manage as normal slot
slotValue = globalOnto.toObject(absSlotValue);