Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2011-07-07 05:38:25 +0000
committerMichael Rennie2011-07-07 05:38:25 +0000
commit1773b7234bb68844628d40b0371c4ee748cb6811 (patch)
treeebb6348409081fcff8893081999e052b66fc517d /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java
parent233d153fa8e4d9e3372107e3af495b26594c99b1 (diff)
downloadeclipse.platform.debug-1773b7234bb68844628d40b0371c4ee748cb6811.tar.gz
eclipse.platform.debug-1773b7234bb68844628d40b0371c4ee748cb6811.tar.xz
eclipse.platform.debug-1773b7234bb68844628d40b0371c4ee748cb6811.zip
[nobug] fix Javadoc warnings
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java
index 7afac18f7..7eb6c942d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2009 IBM Corporation and others.
+ * Copyright (c) 2005, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -216,7 +216,8 @@ public abstract class WorkingDirectoryBlock extends AbstractLaunchConfigurationT
}
/**
- * Returns the selected workspace container,or <code>null</code>
+ * Returns the selected workspace container or <code>null</code>
+ * @return the selected workspace container or <code>null</code>
*/
protected IContainer getContainer() {
String path = getWorkingDirectoryText();
@@ -440,6 +441,7 @@ public abstract class WorkingDirectoryBlock extends AbstractLaunchConfigurationT
/**
* Sets the launch configuration to be used by this working directory block.
+ * @param config set the backing launch configuration for this block
*/
protected void setLaunchConfiguration(ILaunchConfiguration config) {
fLaunchConfiguration = config;

Back to the top