Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2013-08-13 15:13:43 +0000
committerMike Rennie2013-08-13 15:13:43 +0000
commit39bca0f1b40f46d2e1c17f9c0a91a059ef2b8415 (patch)
tree8c464ce6efb733a69c282379bbdd5b3ea9aed58a /org.eclipse.debug.examples.mixedmode/src
parent51dfee66cce98d83d81b66b093381ae70f919108 (diff)
downloadeclipse.platform.debug-39bca0f1b40f46d2e1c17f9c0a91a059ef2b8415.tar.gz
eclipse.platform.debug-39bca0f1b40f46d2e1c17f9c0a91a059ef2b8415.tar.xz
eclipse.platform.debug-39bca0f1b40f46d2e1c17f9c0a91a059ef2b8415.zip
Bug 414939 - Error when checking out
'org.eclipse.debug.examples.mixedmode' example
Diffstat (limited to 'org.eclipse.debug.examples.mixedmode/src')
-rw-r--r--org.eclipse.debug.examples.mixedmode/src/org/eclipse/debug/internal/examples/mixedmode/ProfileLaunchConfigurationDelegate.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/org.eclipse.debug.examples.mixedmode/src/org/eclipse/debug/internal/examples/mixedmode/ProfileLaunchConfigurationDelegate.java b/org.eclipse.debug.examples.mixedmode/src/org/eclipse/debug/internal/examples/mixedmode/ProfileLaunchConfigurationDelegate.java
new file mode 100644
index 000000000..c62fc6797
--- /dev/null
+++ b/org.eclipse.debug.examples.mixedmode/src/org/eclipse/debug/internal/examples/mixedmode/ProfileLaunchConfigurationDelegate.java
@@ -0,0 +1,38 @@
+/*******************************************************************************
+ * Copyright (c) Aug 13, 2013 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.debug.internal.examples.mixedmode;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.debug.core.ILaunch;
+import org.eclipse.debug.core.ILaunchConfiguration;
+import org.eclipse.debug.core.model.ILaunchConfigurationDelegate;
+
+/**
+ *
+ */
+public class ProfileLaunchConfigurationDelegate implements ILaunchConfigurationDelegate {
+
+ /**
+ *
+ */
+ public ProfileLaunchConfigurationDelegate() {
+ }
+
+ /* (non-Javadoc)
+ * @see org.eclipse.debug.core.model.ILaunchConfigurationDelegate#launch(org.eclipse.debug.core.ILaunchConfiguration, java.lang.String, org.eclipse.debug.core.ILaunch, org.eclipse.core.runtime.IProgressMonitor)
+ */
+ @Override
+ public void launch(ILaunchConfiguration configuration, String mode, ILaunch launch, IProgressMonitor monitor) throws CoreException {
+ // do nothing
+ }
+
+}

Back to the top