diff options
author | Darin Wright | 2006-11-17 18:15:13 +0000 |
---|---|---|
committer | Darin Wright | 2006-11-17 18:15:13 +0000 |
commit | f29e1c7bc59ea6b4026486ddea1f1911701cbd9f (patch) | |
tree | 912c5cf5967438e9e9951a9dac2f6e86df528807 | |
parent | 86c1009d799fb90187498a607e744be4c5953f57 (diff) | |
download | eclipse.platform.debug-f29e1c7bc59ea6b4026486ddea1f1911701cbd9f.tar.gz eclipse.platform.debug-f29e1c7bc59ea6b4026486ddea1f1911701cbd9f.tar.xz eclipse.platform.debug-f29e1c7bc59ea6b4026486ddea1f1911701cbd9f.zip |
javadoc typos
-rw-r--r-- | org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java | 18 |
1 files changed, 11 insertions, 7 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 af6b077bc..fb1e313bc 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 @@ -151,9 +151,10 @@ public interface ILaunchConfigurationType extends IAdaptable { public ILaunchDelegate[] getDelegates(Set modes) throws CoreException; /** - * Returns the preferred launch delegate for this type in the specified mode set + * Returns the preferred launch delegate for this type in the specified mode combination. + * * @param modes the set of modes to support - * @return the preferred delegate proxy or <code>null</code> if none + * @return the preferred delegate or <code>null</code> if none * @throws CoreException * * @since 3.3 @@ -163,8 +164,10 @@ public interface ILaunchConfigurationType extends IAdaptable { public ILaunchDelegate getPreferredDelegate(Set modes) throws CoreException; /** - * Allows the preferred launch delegate to be setfor this type with the specifie set of modes - * @param delegate the delegate proxy to set as the default one + * Sets the preferred launch delegate for this type in the specified mode combination. + * + * @param modes launch mode combination + * @param delegate preferred launch delegate * @throws CoreException * * @since 3.3 @@ -254,13 +257,14 @@ public interface ILaunchConfigurationType extends IAdaptable { * @since 3.2 * * @deprecated Since 3.3 all modes are provided as sets and not individual strings. The method <code>getSupportedModeCombinations</code> - * should be used instead to retrive the complete listing of supported modes and their allowable combinations. + * should be used instead to retrieve the complete listing of supported modes and their allowable combinations. */ public Set getSupportedModes(); /** - * Returns a <code>java.util.Set</code> of <code>java.util.Set</code>s containing all of the supported mode combinations - * for this type + * Returns a <code>java.util.Set</code> of <code>java.util.Set</code>s containing all of the + * supported launch mode combinations for this type. + * * @return a set of sets of all the supported mode combinations supported by this type * * @since 3.3 |