Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Ryall2009-04-09 00:19:01 +0000
committerKen Ryall2009-04-09 00:19:01 +0000
commit3ff09538e2ecc5d3084aab993a99df0d88503f3e (patch)
treea6a372efc84bf23f8c2c0be72c6853b1d1694602 /launch/org.eclipse.cdt.launch
parent833f436400f758d2cb0dc3517c2b2c800400f18f (diff)
downloadorg.eclipse.cdt-3ff09538e2ecc5d3084aab993a99df0d88503f3e.tar.gz
org.eclipse.cdt-3ff09538e2ecc5d3084aab993a99df0d88503f3e.tar.xz
org.eclipse.cdt-3ff09538e2ecc5d3084aab993a99df0d88503f3e.zip
Add missing tag.
Diffstat (limited to 'launch/org.eclipse.cdt.launch')
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/LaunchUtils.java14
1 files 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
{

Back to the top