Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jaxb
diff options
context:
space:
mode:
authorKaren Butzke2012-08-17 20:04:51 +0000
committerKaren Butzke2012-08-17 20:04:51 +0000
commitd4557ae3b638a2f4ec3f13bff4025de87fadee89 (patch)
tree07a0f4fdea55752bfb91dfd77506c4d2b4813ee9 /jaxb
parentc8ec10f23abd763bf6a3ffe83815397b987d068b (diff)
downloadwebtools.dali-d4557ae3b638a2f4ec3f13bff4025de87fadee89.tar.gz
webtools.dali-d4557ae3b638a2f4ec3f13bff4025de87fadee89.tar.xz
webtools.dali-d4557ae3b638a2f4ec3f13bff4025de87fadee89.zip
problem markers were not being removed when running a validation
because the problem marker in code did not match the one in the plugin.xml
Diffstat (limited to 'jaxb')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/validation/JaxbValidator.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/validation/JaxbValidator.java b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/validation/JaxbValidator.java
index 1bd5690139..7edbd8e6a9 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/validation/JaxbValidator.java
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/validation/JaxbValidator.java
@@ -34,11 +34,13 @@ public class JaxbValidator
extends AbstractValidator
implements IValidator {
- public static final String RELATIVE_MARKER_ID = "problemMarker"; //$NON-NLS-1$
+ public static final String RELATIVE_MARKER_ID = "jaxbProblemMarker"; //$NON-NLS-1$
/**
* The identifier for the JAXB validation marker
- * (value <code>"org.eclipse.jpt.jaxb.core.problemMarker"</code>).
+ * (value <code>"org.eclipse.jpt.jaxb.core.jaxbProblemMarker"</code>).
+ * <p>
+ * See <code>org.eclipse.jpt.jaxb.core/plugin.xml:org.eclipse.core.resources.markers</code>.
*/
public static final String MARKER_ID = JptJaxbCorePlugin.instance().getPluginID() + '.' + RELATIVE_MARKER_ID;

Back to the top