Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/validation/JaxbValidator.java')
-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