Package org.eclipse.ui.internal.activities.ws

Examples of org.eclipse.ui.internal.activities.ws.EnablementDialog


    //If it's a non-interactive point activate all activities
    if (!triggerPoint.getBooleanHint(ITriggerPoint.HINT_INTERACTIVE)) {
      return identifier.getActivityIds();
    }
   
        EnablementDialog dialog = new EnablementDialog(Util.getShellToParentOn(), identifier
                .getActivityIds(), strings);
        if (dialog.open() == Window.OK) {
            Set activities = dialog.getActivitiesToEnable();
            if (dialog.getDontAsk()) {
        PrefUtil.getInternalPreferenceStore().setValue(
            IPreferenceConstants.SHOULD_PROMPT_FOR_ENABLEMENT,
            false);
        WorkbenchPlugin.getDefault().savePluginPreferences();
      }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.activities.ws.EnablementDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.