/* Otherwise, convert them to ConstructorOperations. */
ConstructorOperation[] constrs =
new ConstructorOperation[reflectedConstructors.length];
for (int i = 0; i < constrs.length; i++) {
constrs[i] = new ConstructorOperation(clazz,
reflectedConstructors[i]);
}
return constrs; // Return the ConstructorOperations.
}