Examples of ILaunchConfigurationDelegate


Examples of org.eclipse.debug.core.model.ILaunchConfigurationDelegate

            final String name = target.toString();
            final ILaunchConfigurationWorkingCopy wc = lcType.newInstance(null, name);
            final Set<String> modes = new HashSet<String>();
            modes.add(ILaunchManager.DEBUG_MODE);
            final ILaunchDelegate[] delegates = lcType.getDelegates(modes);
            final ILaunchConfigurationDelegate delegate = delegates[0].getDelegate();
            if (!(delegate instanceof DebugTraceLaunchConfigurationDelegate)) {
                return;
            }
            final DebugTraceLaunchConfigurationDelegate ldtlcd = (DebugTraceLaunchConfigurationDelegate) delegate;
            ldtlcd.setInfo(target.getLaunch(), target,
View Full Code Here

Examples of org.eclipse.debug.core.model.ILaunchConfigurationDelegate

      ILaunchConfiguration saved = copy.doSave();

      // NOTE(jz) became deprecated in 3.3, replaced with getDelegates
      // (plural) method,
      // as this new method is marked experimental leaving as-is for now
      ILaunchConfigurationDelegate delegate =
          launchConfigType.getDelegate("run");
      // only support run for now
      DebugUITools.launch(saved, "run");
    } catch (CoreException e) {
      // TODO(jz) autogen
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.