if (trace) {
log.trace("Processing classworld realm: " + name);
}
// Get or create a new realm for this name
ClassWorld world = getTwiddle().getClassWorld();
ClassRealm realm = null;
try {
realm = world.getRealm(name);
}
catch (NoSuchRealmException e) {
realm = world.newRealm(name);
}
String[] constituents = config.getLoadURLConfig();
if (constituents != null) {
log.trace("Processing constituents...");