* @param url
* of the plug-in location.
*/
public void loadPluginType(URL url) {
XMLReader reader = new XMLReader();
InputSource source = null;
try {
source = new InputSource(new FileInputStream(url.getFile()));
} catch (FileNotFoundException e) {
throw new PluginLoadException(
"It was not possible to load the plugin type at " + url, e);
}
IPluginTypeData data = reader.readPluginTypeXMLFile(source, url.getFile());
foundPluginTypes.add(data);
loadPlugInTypeClasses(data);