Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2006-11-16 17:09:24 +0000
committerMichael Rennie2006-11-16 17:09:24 +0000
commita6d8573a4ac98c999b1029a5e2206f2d1145b95f (patch)
tree21fe64c548814d5f745edd120cc858a9c7b8cb52 /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
parentc130146e210d0c6b4c0330c63f9629144c06f4ad (diff)
downloadeclipse.platform.debug-a6d8573a4ac98c999b1029a5e2206f2d1145b95f.tar.gz
eclipse.platform.debug-a6d8573a4ac98c999b1029a5e2206f2d1145b95f.tar.xz
eclipse.platform.debug-a6d8573a4ac98c999b1029a5e2206f2d1145b95f.zip
Bug 164682
NPE SourceLookupPanel add external archive
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
index afe158cb7..305c95598 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
@@ -247,7 +247,9 @@ public abstract class AbstractLaunchConfigurationTab implements ILaunchConfigura
}
/**
- * Create some empty space.
+ * Creates vertical space in the parent <code>Composite</code>
+ * @param comp the parent to add the vertical space to
+ * @param colSpan the number of line of vertical space to add
*/
protected void createVerticalSpacer(Composite comp, int colSpan) {
Label label = new Label(comp, SWT.NONE);

Back to the top