FileType Icon in Project Explorer
I see that the file icon in the project explorer defaults to the LanguageFileType:getIcon() method. For the Java language, the icon changes depending upon whether the file is a Java Class or a Java Interface. I have a similar language and I would like to do the same. How would I accomplish this?
Please sign in to leave a comment.
You should implement FileIconPatcher like JavaFileIconPatcher does
Thanks! That's exactly what I was looking for.