denote marker/annotations
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/ui/OffsetStatusLineContributionItem.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/ui/OffsetStatusLineContributionItem.java
index ca157d1..2a446c8 100644
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/ui/OffsetStatusLineContributionItem.java
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/ui/OffsetStatusLineContributionItem.java
@@ -345,10 +345,10 @@
 				private String getType(Annotation annotation) {
 					String type = null;
 					if (annotation instanceof MarkerAnnotation) {
-						type = MarkerUtilities.getMarkerType(((MarkerAnnotation) annotation).getMarker());
+						type = "M:"+MarkerUtilities.getMarkerType(((MarkerAnnotation) annotation).getMarker()); //$NON-NLS-1$
 					}
 					else {
-						type = annotation.getType();
+						type = "A:"+annotation.getType(); //$NON-NLS-1$
 					}
 					if (type == null)
 						type = ""; //$NON-NLS-1$