final String name = config.substring(0, config.indexOf('='));
final String val = config.substring(name.length() + 1);
try {
synth.configure(name, val);
} catch (GeDAException geda) {
throw new UnableToCreateInstanceException(synth.getClass().getCanonicalName(),
"Unable to configure with: " + value, geda);
}
}
} else {
lazyGet(classLoader, value);