Hide markers in Eclipse

I am developing an RCP Eclipse application and I have custom markers that appear on the diagnostic screen. I want the filtering in my diagnostic view to also affect the markers (if I hide warnings in my view, I want the warning markers not to appear in the editor). Is it possible to hide markers from the editor without actually deleting them?

+3
source share
1 answer

Show / hide marker (annotation) can be done on the preferences page. You can try to programmatically change the state of the warning marker in the preferences store while hiding the warnings in the view. See http://www.vogella.com/tutorials/EclipsePreferences/article.html

0
source

All Articles