* @see org.jnode.plugin.Plugin#stopPlugin()
*/
protected void stopPlugin() throws PluginException {
try {
final DeviceManager dm = DeviceUtils.getDeviceManager();
dm.removeListener(this);
final Collection<Device> devs = dm.getDevices();
for (Device dev : devs) {
removeListeners(dev);
}
} catch (NameNotFoundException ex) {