Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

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 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>
 

Since:
3.0
Restriction:
This interface is not intended to be implemented by clients.
Restriction:
This interface is not intended to be extended by clients.

Method Summary
  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.
 

Method Detail

getIdentifier


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

Returns:
the unique identifier for this launch mode

getLabel


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

Returns:
a human readable label for this launch mode

getLaunchAsLabel


String getLaunchAsLabel()
Returns a human readable label for this launch mode when used in a cascade menu. For example, "Run As". Allows the label to be properly externalized.

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.

Returns:
human readable label for this launch mode when used in a cascade menu
Since:
3.2

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire