Examples of ILaunchGroup


Examples of org.eclipse.debug.ui.ILaunchGroup

    public Object[] getElements(Object inputElement) {
      ILaunchGroup[] groups = DebugUITools.getLaunchGroups();
      List possibleGroups = new ArrayList();
      ILaunchConfiguration configuration = (ILaunchConfiguration) inputElement;
      for (int i = 0; i < groups.length; i++) {
        ILaunchGroup extension = groups[i];
        LaunchHistory history = getLaunchConfigurationManager().getLaunchHistory(
                extension.getIdentifier());
        if (history != null && history.accepts(configuration)) {
          possibleGroups.add(extension);
        }
      }
      return possibleGroups.toArray();
View Full Code Here

Examples of org.eclipse.debug.ui.ILaunchGroup

    public Object[] getElements(Object inputElement) {
      ILaunchGroup[] groups = DebugUITools.getLaunchGroups();
      List possibleGroups = new ArrayList();
      ILaunchConfiguration configuration = (ILaunchConfiguration) inputElement;
      for (int i = 0; i < groups.length; i++) {
        ILaunchGroup extension = groups[i];
        LaunchHistory history = getLaunchConfigurationManager().getLaunchHistory(
                extension.getIdentifier());
        if (history != null && history.accepts(configuration)) {
          possibleGroups.add(extension);
        }
      }
      return possibleGroups.toArray();
View Full Code Here

Examples of org.eclipse.debug.ui.ILaunchGroup

              conf = underlyingConfig;
            }
          }
        } catch (CoreException e) {
        }
        ILaunchGroup group = DebugUITools.getLaunchGroup(conf, mode);
        if (group != null) {
          DebugUITools.openLaunchConfigurationDialog(Display
              .getDefault().getActiveShell(), conf, group
              .getIdentifier(), null);
        }
      }
    });
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.