Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchGroup.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchGroup.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchGroup.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchGroup.java
index 73d66a098..25ad8ce05 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchGroup.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchGroup.java
@@ -9,7 +9,7 @@
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.ui;
-
+
import org.eclipse.jface.resource.ImageDescriptor;
/**
@@ -18,7 +18,7 @@ import org.eclipse.jface.resource.ImageDescriptor;
* a launch group, and a launch history is maintained for each group.
* A launch group is defined in plug-in XML via the <code>launchGroups</code>
* extension point.
- * <p>
+ * <p>
* Following is an example of a launch group contribution:
* <pre>
* &lt;extension point="org.eclipse.debug.ui.launchGroups"&gt;
@@ -45,58 +45,58 @@ import org.eclipse.jface.resource.ImageDescriptor;
* @noextend This interface is not intended to be extended by clients.
*/
public interface ILaunchGroup {
-
+
/**
* Returns the image for this launch group, or <code>null</code>
* if none.
- *
+ *
* @return the image for this launch group, or <code>null</code> if none
*/
public ImageDescriptor getImageDescriptor();
-
+
/**
* Returns the banner image for this launch group, or <code>null</code> if
* none
- *
+ *
* @return the banner image for this launch group, or <code>null</code> if
* none
*/
public ImageDescriptor getBannerImageDescriptor();
-
+
/**
* Returns the label for this launch group
- *
+ *
* @return the label for this launch group
*/
public String getLabel();
-
+
/**
* Returns the id for this launch group
- *
+ *
* @return the id for this launch group
*/
public String getIdentifier();
-
+
/**
* Returns the category for this launch group, possibly <code>null</code>
- *
+ *
* @return the category for this launch group, possibly <code>null</code>
*/
public String getCategory();
-
+
/**
* Returns the mode for this launch group
- *
+ *
* @return the mode for this launch group
*/
public String getMode();
-
+
/**
* Returns whether this launch group is public
- *
+ *
* @return boolean
*/
public boolean isPublic();
-
+
}

Back to the top