Eclipse Platform
Release 3.1

org.eclipse.debug.core
Interface ILaunchMode


public interface ILaunchMode

A launch mode. The debug platform contributes launch modes for run, debug, and profile. Clients may contribute additional launch modes in plug-in XML via the launchModes extension point.

Following is an example launch mode contribution for profiling. A launch mode has an unique identifer 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>
 

Clients are not intended to implement this interface.

Since:
3.0

Method Summary
 String getIdentifier()
          Returns the unique identifier for this launch mode.
 String getLabel()
          Returns a human readable label for this launch mode.
 

Method Detail

getIdentifier

public String getIdentifier()
Returns the unique identifier for this launch mode.

Returns:
the unique identifier for this launch mode

getLabel

public String getLabel()
Returns a human readable label for this launch mode.

Returns:
a human readable label for this launch mode

Eclipse Platform
Release 3.1

Guidelines for using Eclipse APIs.

Copyright (c) IBM Corp. and others 2000, 2005. All rights reserved.