Issue
I want create Project with icon warning like this but I try create Project but it always create Project without icon warning
src="https://i.stack.imgur.com/ZLjfC.png" alt="enter image description here" />
Solution
That is an icon 'decorator'. These are added by the view using the Eclipse decoration manager.
That specific decorator is added when there are warning markers on resources in the project.
Markers are created by plug-ins using the createMarker
method of IResource
(usually its derived interfaces IFile
, IFolder
or IProject
).
Answered By - greg-449
Answer Checked By - Terry (JavaFixing Volunteer)