this.bundleSymbolicName = bundleSymbolicName;
this.bundleVersion = bundleVersion;
}
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
Deployer deployer = new Deployer(repositoryDirectory);
try {
deployer.undeploy(bundleSymbolicName, bundleVersion, false);
contentProvider.refresh();
} catch (IOException e) {
throw new InvocationTargetException(e);
}
}