if (( synthResourceLoader == null ) || ( synthResourceLoader.length() == 0 ))
synthResourceLoader = "net.xoetrope.optional.laf.synth.SynthStub";
SynthLafInstaller.class.getClassLoader().getResource( synthResourceLoader );
Class resourceLoader = null;
try {
SynthClassLoader scl = new SynthClassLoader( SynthLafInstaller.class.getClassLoader());
resourceLoader = scl.findClass( synthResourceLoader );
String s = currentProject.getStartupParam( "SynthImageConveter" );
if (( s != null ) && ( s.length() > 0 ))
scl.setConvertClassName( s );
s = currentProject.getStartupParam( "SynthOverwriteImages" );
if (( s != null ) && ( s.length() > 0 ))
scl.setOverwriteImages( Boolean.parseBoolean( s ));
}
catch ( Throwable e ) {
resourceLoader = Class.forName( synthResourceLoader.trim() );
}
//loadStubClass( "net.xoetrope.optional.laf.synth.SynthStub" );