/**
* Apply the proposal. Actually we only call the CactifyActionDelegate
* and he does the whole 'magic'.
*/
public void apply(IDocument document) {
CactifyActionDelegate cactifyDelegate = new CactifyActionDelegate();
cactifyDelegate.setSelectedProject(project);
//We add null and empty string because CactifyActionDelegate does not need these.
cactifyDelegate.run(null);
}