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
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')
-rw-r--r--org.eclipse.debug.examples.mixedmode/.settings/org.eclipse.pde.prefs36
-rwxr-xr-xorg.eclipse.debug.examples.mixedmode/plugin.xml2
-rw-r--r--org.eclipse.debug.examples.mixedmode/src/org/eclipse/debug/internal/examples/mixedmode/ProfileLaunchConfigurationDelegate.java38
3 files changed, 75 insertions, 1 deletions
diff --git a/org.eclipse.debug.examples.mixedmode/.settings/org.eclipse.pde.prefs b/org.eclipse.debug.examples.mixedmode/.settings/org.eclipse.pde.prefs
new file mode 100644
index 000000000..56e42fa48
--- /dev/null
+++ b/org.eclipse.debug.examples.mixedmode/.settings/org.eclipse.pde.prefs
@@ -0,0 +1,36 @@
+compilers.f.unresolved-features=1
+compilers.f.unresolved-plugins=1
+compilers.incompatible-environment=1
+compilers.p.build=1
+compilers.p.build.bin.includes=1
+compilers.p.build.encodings=2
+compilers.p.build.java.compiler=2
+compilers.p.build.java.compliance=1
+compilers.p.build.missing.output=1
+compilers.p.build.output.library=1
+compilers.p.build.source.library=1
+compilers.p.build.src.includes=1
+compilers.p.deprecated=2
+compilers.p.discouraged-class=1
+compilers.p.illegal-att-value=0
+compilers.p.internal=1
+compilers.p.matching-pom-version=0
+compilers.p.missing-packages=0
+compilers.p.missing-version-export-package=2
+compilers.p.missing-version-import-package=2
+compilers.p.missing-version-require-bundle=2
+compilers.p.no-required-att=0
+compilers.p.not-externalized-att=0
+compilers.p.unknown-attribute=0
+compilers.p.unknown-class=1
+compilers.p.unknown-element=2
+compilers.p.unknown-identifier=1
+compilers.p.unknown-resource=0
+compilers.p.unresolved-ex-points=0
+compilers.p.unresolved-import=0
+compilers.p.unused-element-or-attribute=1
+compilers.s.create-docs=false
+compilers.s.doc-folder=doc
+compilers.s.open-tags=1
+compilers.use-project=true
+eclipse.preferences.version=1
diff --git a/org.eclipse.debug.examples.mixedmode/plugin.xml b/org.eclipse.debug.examples.mixedmode/plugin.xml
index 874b82100..d39078d9c 100755
--- a/org.eclipse.debug.examples.mixedmode/plugin.xml
+++ b/org.eclipse.debug.examples.mixedmode/plugin.xml
@@ -12,7 +12,7 @@
type="org.eclipse.jdt.launching.localJavaApplication">
</launchDelegate>
<launchDelegate
- delegate="org.eclipse.debug.internal.examples.mixedmode.LaunchConfigurationDelegate1"
+ delegate="org.eclipse.debug.internal.examples.mixedmode.ProfileLaunchConfigurationDelegate"
delegateDescription="This delegate performs profiling in debug, profile mode"
id="test.launch.options.profileLaunchDelegate"
modes="run, debug"
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