}
private void invokeAddMethod(Method method, Object obj,
Object value) throws OntologyException {
try {
Collection c = (Collection) value;
Iterator it = c.iterator();
while (it.hasNext()) {
Object ithValue = it.next();
invokeSetterMethod(method, obj, ithValue);
}
}