String runfw = p.getProperty(Constants.RUNFW);
if (runfw == null)
return new Status(IStatus.ERROR, Plugin.PLUGIN_ID, 0, Messages.ResolutionJob_errorFrameworkOrExecutionEnvironmentUnspecified, null);
EE ee = EE.parse(p.getProperty(Constants.RUNEE));
if (ee == null)
return new Status(IStatus.ERROR, Plugin.PLUGIN_ID, 0, Messages.ResolutionJob_errorFrameworkOrExecutionEnvironmentUnspecified, null);
return Status.OK_STATUS;
} catch (Exception e) {