public interface ILaunchMode
launchModes
extension point.
Following is an example launch mode contribution for profiling. A launch
mode has an unique identifier specified by the mode
attribute
and a human readable label specified by the label
attribute.
<extension point="org.eclipse.debug.core.launchModes"> <launchMode mode="profile" label="Profile"> </launchMode> </extension>
Modifier and Type | Method and Description |
---|---|
String |
getIdentifier()
Returns the unique identifier for this launch mode.
|
String |
getLabel()
Returns a human readable label for this launch mode.
|
String |
getLaunchAsLabel()
Returns a human readable label for this launch mode when used in a
cascade menu.
|
String getIdentifier()
String getLabel()
String getLaunchAsLabel()
A new attribute has been added the the launch mode extension in 3.2 to specify this label. When unspecified a default label is generated by concatenation, for backwards compatibility.
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.