As you know, If package has a compile error then the package display an error sign. Error sign means Red circle with 'X'.

My package has some other type file. (It is not a Java file.) If user modify the file then My plugin will inspect the file. And should display error sign on the package if the file has wrong information.

How can I display the error sign?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The way I display errors within my plugin is through the use of Markers.

The following link should help you get started: Mark My Words

I had some problem with implementing them, so if you encounter the same error, feel free to take a look at my previous question: Eclipse Plug-in Development: Creating Problem Marker for a Given Resource

link|improve this answer
Also, check out the FAQ: wiki.eclipse.org/… – Fabian Steeg Jul 5 '10 at 11:24
Thanks a lot! I will try it. – cnook Jul 6 '10 at 3:38
Dear All, I tried it. But I cannot get the "Marker" in the "Problem" view (editor also). Exactly my plugin listens PRE_BUILD of resource xml file. Even though every marker.setAttribute() methods executed properly, the Text Editor and Problems View do not show the problem Mark. Please let me know.. Thanks again. – cnook Jul 8 '10 at 9:31
feedback

Your Answer

 
or
required, but never shown

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