1 11 package org.eclipse.debug.internal.ui.launchConfigurations; 12 13 import org.eclipse.debug.core.ILaunchDelegate; 14 import org.eclipse.ui.IPluginContribution; 15 16 20 public class LaunchDelegateContribution implements IPluginContribution { 21 22 private ILaunchDelegate fDelegate = null; 23 24 28 public LaunchDelegateContribution(ILaunchDelegate delegate) { 29 fDelegate = delegate; 30 } 31 32 35 public String getLocalId() { 36 return fDelegate.getId(); 37 } 38 39 42 public String getPluginId() { 43 return fDelegate.getPluginIdentifier(); 44 } 45 46 } 47 | Popular Tags |