Community
Participate
Working Groups
import org.eclipse.hyades.ui.internal.navigator.INavigator;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.LegacyActionTools;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.WizardDialog;
this.wizardClass = wizardClass;
setId(wizardClass.getName());
setText(text);
setToolTipText(LegacyActionTools.removeMnemonics(text));
setImageDescriptor(imageDescriptor);
}
import org.eclipse.hyades.ui.extension.INavigatorContribution;
import org.eclipse.hyades.ui.internal.navigator.action.INavigatorContributor;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.Separator;
exportSymptomDBAction = new WizardOpenerAction(ExportSymptomDBWizard.class, LogMessages.exportSymptomDB, SDbPluginImages.INSTANCE.getImageDescriptor(SDbPluginImages.IMG_SYMPTOM_DB));
analyzeSettingAction = new ConfigureAnalysisActionDelegate(false);
analyzeSettingAction.setText(LogMessages.analyzeSettings);
analyzeSettingAction.setToolTipText(LegacyActionTools.removeMnemonics(LogMessages.analyzeSettings));
analyzeSettingAction.setImageDescriptor(SDbPluginImages.INSTANCE.getImageDescriptor("e", SDbPluginImages.IMG_ANALYZE_SETTINGS));
import org.eclipse.hyades.sdb.internal.util.LogMessages;
import org.eclipse.hyades.ui.provisional.navigator.action.INavigatorActionContributor;
import org.eclipse.jface.action.IAction;
import org.eclipse.ui.actions.ActionFactory.IWorkbenchAction;
public IWorkbenchAction createAction() {
ConfigureAnalysisActionDelegate analyzeSettingAction = new ConfigureAnalysisActionDelegate(false);
return analyzeSettingAction;