public static final String XPID_ISSUEFIXER = "org.locationtech.udig.issues.issueFixer"; //$NON-NLS-1$
IMemento fixerMemento = null;
public void fixIssue( IViewPart part, IEditorPart editor ) {
IFixer fixer = findIssueFixer(fixerMemento);
if (fixer == null) {
return;
}
setResolution(Resolution.IN_PROGRESS);
fixer.fix(this, fixerMemento);
}