commit | 2f176343902274d985a14fae4117ad41b947c7f9 | [log] [tgz] |
---|---|---|
author | nitind <nitind> | Wed Feb 06 16:14:25 2008 +0000 |
committer | nitind <nitind> | Wed Feb 06 16:14:25 2008 +0000 |
tree | 46a4f8fe23426273326a0032935603be62ae5258 | |
parent | 5b597905ad7bbdc7b833470b90703e274a9a00d6 [diff] |
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$