From 3ff09538e2ecc5d3084aab993a99df0d88503f3e Mon Sep 17 00:00:00 2001 From: Ken Ryall Date: Thu, 9 Apr 2009 00:19:01 +0000 Subject: [PATCH] Add missing tag. --- .../src/org/eclipse/cdt/launch/LaunchUtils.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/LaunchUtils.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/LaunchUtils.java index d616f693bc5..53a2ee98bd0 100644 --- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/LaunchUtils.java +++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/LaunchUtils.java @@ -12,6 +12,10 @@ package org.eclipse.cdt.launch; import java.io.IOException; +import org.eclipse.cdt.core.CCorePlugin; +import org.eclipse.cdt.core.IBinaryParser; +import org.eclipse.cdt.core.ICExtensionReference; +import org.eclipse.cdt.core.IBinaryParser.IBinaryObject; import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants; import org.eclipse.cdt.utils.CommandLineUtil; import org.eclipse.core.resources.IProject; @@ -22,10 +26,6 @@ import org.eclipse.core.runtime.Path; import org.eclipse.core.variables.IStringVariableManager; import org.eclipse.core.variables.VariablesPlugin; import org.eclipse.debug.core.ILaunchConfiguration; -import org.eclipse.cdt.core.CCorePlugin; -import org.eclipse.cdt.core.IBinaryParser; -import org.eclipse.cdt.core.ICExtensionReference; -import org.eclipse.cdt.core.IBinaryParser.IBinaryObject; /** * Utility methods. @@ -51,6 +51,9 @@ public class LaunchUtils { return args; } + /** + * @since 6.0 + */ public static IBinaryObject getBinary(IProject project, IPath exePath) throws CoreException { ICExtensionReference[] parserRef = CCorePlugin.getDefault().getBinaryParserExtensions(project); for (int i = 0; i < parserRef.length; i++) { @@ -74,6 +77,9 @@ public class LaunchUtils { return null; } + /** + * @since 6.0 + */ public static IBinaryObject getBinary(String programName, String projectName) throws CoreException {