Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-06-27 18:34:47 +0000
committerMarkus Keller2016-06-27 18:34:47 +0000
commit21ff56bc34ae85f6dc4ce87627e56ff97c9ef270 (patch)
tree597512ffbee893859ceac3150bdee89851c72816
parent1f905d89bc115bb8e8e6bdc3c1ae2529836669d1 (diff)
downloadeclipse.jdt.debug-21ff56bc34ae85f6dc4ce87627e56ff97c9ef270.tar.gz
eclipse.jdt.debug-21ff56bc34ae85f6dc4ce87627e56ff97c9ef270.tar.xz
eclipse.jdt.debug-21ff56bc34ae85f6dc4ce87627e56ff97c9ef270.zip
Bug 5188: document layer-breaker in org.eclipse.jdt.debug
-rw-r--r--org.eclipse.jdt.launching/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/IJavaLaunchConfigurationConstants.java8
-rw-r--r--org.eclipse.jdt.launching/pom.xml2
3 files changed, 10 insertions, 2 deletions
diff --git a/org.eclipse.jdt.launching/META-INF/MANIFEST.MF b/org.eclipse.jdt.launching/META-INF/MANIFEST.MF
index a5869bcb2..894d528b3 100644
--- a/org.eclipse.jdt.launching/META-INF/MANIFEST.MF
+++ b/org.eclipse.jdt.launching/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jdt.launching; singleton:=true
-Bundle-Version: 3.8.100.qualifier
+Bundle-Version: 3.8.200.qualifier
Bundle-Activator: org.eclipse.jdt.internal.launching.LaunchingPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/IJavaLaunchConfigurationConstants.java b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/IJavaLaunchConfigurationConstants.java
index 6365f6e8c..bc8e12183 100644
--- a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/IJavaLaunchConfigurationConstants.java
+++ b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/IJavaLaunchConfigurationConstants.java
@@ -67,6 +67,10 @@ public interface IJavaLaunchConfigurationConstants {
* Launch configuration attribute key. The value is a name of
* a Java project associated with a Java launch configuration.
*/
+ /*
+ * This constant is referenced from an upper-layer bundle
+ * @see org.eclipse.jdt.internal.debug.core.model.JDIDebugTarget#prepareBreakpointsSearchScope()
+ */
public static final String ATTR_PROJECT_NAME = LaunchingPlugin.getUniqueIdentifier() + ".PROJECT_ATTR"; //$NON-NLS-1$
/**
@@ -179,6 +183,10 @@ public interface IJavaLaunchConfigurationConstants {
* unspecified, a classpath is computed by the classpath provider associated
* with a launch configuration.
*/
+ /*
+ * This constant is referenced from an upper-layer bundle
+ * @see org.eclipse.jdt.internal.debug.core.model.JDIDebugTarget#prepareBreakpointsSearchScope()
+ */
public static final String ATTR_DEFAULT_CLASSPATH = LaunchingPlugin.getUniqueIdentifier() + ".DEFAULT_CLASSPATH"; //$NON-NLS-1$
/**
diff --git a/org.eclipse.jdt.launching/pom.xml b/org.eclipse.jdt.launching/pom.xml
index 85b0dee13..432881d47 100644
--- a/org.eclipse.jdt.launching/pom.xml
+++ b/org.eclipse.jdt.launching/pom.xml
@@ -18,7 +18,7 @@
</parent>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.launching</artifactId>
- <version>3.8.100-SNAPSHOT</version>
+ <version>3.8.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>

Back to the top