* INTERNAL:
* Process the constructor result for the caller.
*/
public ConstructorResult process(ClassLoader loader) {
// Create a new constructor result with the target class.
ConstructorResult constructorResult = new ConstructorResult(MetadataHelper.getClassForName(getTargetClass().getName(), loader));
// Process the column results.
for (ColumnResultMetadata columnResult : getColumnResults()) {
constructorResult.addColumnResult(columnResult.process(loader));
}
return constructorResult;
}