System.out.println("Loaded " + uri); //$NON-NLS-1$
// Validate the contents of the loaded resource.
//
for (EObject eObject : resource.getContents()) {
Diagnostic diagnostic = Diagnostician.INSTANCE.validate(eObject);
if (diagnostic.getSeverity() != Diagnostic.OK) {
printDiagnostic(diagnostic, ""); //$NON-NLS-1$
}
}
}
catch (RuntimeException exception) {