{
Map<String, URL> lafs = new HashMap<String, URL>();
// Directory containing the standard LAF jar files.
final File stdLafJarDir = _plugin.getLookAndFeelFolder();
// Load info about the standard LAFs that come with this plugin.
PluginResources rsrc = _plugin.getResources();
for (int i = 0; /* forever */; ++i)
{
try
{
String className = rsrc.getString(LAFPluginResources.IKeys.CLASSNAME + i);
if (className == null || className.length() == 0)
{
break;
}
String jarName = rsrc.getString(LAFPluginResources.IKeys.JAR + i);
if (jarName == null || jarName.length() == 0)
{
break;
}