Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2011-07-06 15:29:03 +0000
committerMichael Rennie2011-07-06 15:29:03 +0000
commit4e1445faf207d52593e07eed3a473095f6808e26 (patch)
tree5e1b02c4a3adc1f36fe391ec315a08f083d4a711 /org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
parent03ca55d0cebccbc06615f6f48b03c4acce4f4600 (diff)
downloadeclipse.platform.debug-4e1445faf207d52593e07eed3a473095f6808e26.tar.gz
eclipse.platform.debug-4e1445faf207d52593e07eed3a473095f6808e26.tar.xz
eclipse.platform.debug-4e1445faf207d52593e07eed3a473095f6808e26.zip
[nobug] fix all of the Javadoc warnings
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
index 1a24538b5..375dc34ca 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2010 IBM Corporation and others.
+ * Copyright (c) 2000, 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
@@ -140,7 +140,7 @@ public interface ILaunchConfigurationType extends IAdaptable {
* @param modes set of launch modes
* @return the <code>ILaunchDelegate</code>s capable of launching
* in the specified modes or an empty collection if none
- * @throws CoreException
+ * @throws CoreException if a problem is encountered
* @since 3.3
*/
public ILaunchDelegate[] getDelegates(Set modes) throws CoreException;
@@ -151,7 +151,7 @@ public interface ILaunchConfigurationType extends IAdaptable {
*
* @param modes the set of modes to support
* @return the preferred delegate or <code>null</code> if none
- * @throws CoreException
+ * @throws CoreException if a problem is encountered
*
* @since 3.3
*/
@@ -164,7 +164,7 @@ public interface ILaunchConfigurationType extends IAdaptable {
*
* @param modes launch mode combination
* @param delegate preferred launch delegate or <code>null</code>
- * @throws CoreException
+ * @throws CoreException if a problem is encountered
*
* @since 3.3
*/

Back to the top