Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDean Roberts2003-03-10 21:59:30 +0000
committerDean Roberts2003-03-10 21:59:30 +0000
commit4b73bdac83aae1ae5bd8e26690046425ca2c8367 (patch)
tree8e8a778c39246e527d3e421c818dd00169a0ea7c /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
parented7f9e4eb817fa226cf5114acecfdc0d9f018c3f (diff)
downloadeclipse.platform.debug-4b73bdac83aae1ae5bd8e26690046425ca2c8367.tar.gz
eclipse.platform.debug-4b73bdac83aae1ae5bd8e26690046425ca2c8367.tar.xz
eclipse.platform.debug-4b73bdac83aae1ae5bd8e26690046425ca2c8367.zip
Copyright fix - automated changesv20030310-postcopyrightupdate
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java30
1 files changed, 19 insertions, 11 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
index 0e5c40d1c..0d164a2e9 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
@@ -1,11 +1,15 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
package org.eclipse.debug.internal.ui.launchConfigurations;
-/**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
-This file is made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-**********************************************************************/
import java.lang.reflect.InvocationTargetException;
import java.text.MessageFormat;
@@ -80,7 +84,8 @@ import org.eclipse.ui.help.WorkbenchHelp;
public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaunchConfigurationDialog {
/**
- * Keep track of the currently visible dialog instance */
+ * Keep track of the currently visible dialog instance
+ */
private static ILaunchConfigurationDialog fgCurrentlyVisibleLaunchConfigurationDialog;
/**
@@ -256,7 +261,8 @@ public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaun
/**
* Constant specifying that a new launch configuration dialog was not opened. Instead
- * an existing launch configuration dialog was used. */
+ * an existing launch configuration dialog was used.
+ */
public static final int LAUNCH_CONFIGURATION_DIALOG_REUSE_OPEN = 4;
/**
@@ -1727,7 +1733,8 @@ public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaun
}
/**
- * Returns the banner image to display in the title area */
+ * Returns the banner image to display in the title area
+ */
protected Image getBannerImage() {
if (fBannerImage == null) {
ImageDescriptor descriptor = getLaunchGroup().getBannerImageDescriptor();
@@ -1750,7 +1757,8 @@ public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaun
/**
* Returns the launch group being displayed.
*
- * @return launch group */
+ * @return launch group
+ */
public LaunchGroupExtension getLaunchGroup() {
return fGroup;
}
@@ -1892,4 +1900,4 @@ public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaun
}
ErrorDialog.openError(getShell(), title, null, status);
}
-} \ No newline at end of file
+}

Back to the top