I got many ideas from previous question (How to display an error sign on the Package when the Package has wrong information?)

But the Problem Marker is not displayed.

The resource I'm interested in, is an XML file.

So I added a listener for PRE_BUILD, using the following code:

addResourceChangedListener(xxx, IResourceChangeEvent.PRE_BUILD)

It works fine. Now I'm trying to add a Problem Marker.

IMarker marker = file.createMarker(PROBLEM_ID);
marker.setAttribute(IMarker.SEVERITY, IMarker.SEVERITY_ERROR);
marker.setAttribute(IMarker.MESSAGE, "Error Message");
marker.setAttribute(IMarker.CHAR_START, 5);
marker.setAttribute(IMarker.CHAR_END, 6);
marker.setAttribute(IMarker.LINE_NUMBER, 5);

Above code is executed. But the Problem Marker is not displayed on the Editor and Problem views. How can I show the Problem Marker properly?

link|improve this question

Thanks it was the same problem for me! – the_dark_destructor Jan 4 at 14:49
feedback

1 Answer

up vote 1 down vote accepted

If you add your marker upon IResourceChangeEvent.PRE_BUILD I could imagine the problem is that before a build, all markers are cleared - so perhaps your new markers are cleared immediately so you don't even see them. I'd give it a try with IResourceChangeEvent.POST_BUILD.

Also, are you using the correct problem ID when creating the marker? Because in your code you use createMarker(PROBLEM_ID), not createMarker(IMarker.PROBLEM).

link|improve this answer
Thanks for your response. I used 'POST_BUILD' also. I have looked in to this problem from the beginning. Finally I got the Problem Marker. The reason of that is "PROBLEM_ID" in the code. It is different with id of extension. Whatever thanks for your response again. – cnook Jul 9 '10 at 2:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.