Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "pinned" icon of a class in Intellij IDEA mean?

org.apache.commons.validator.routines.CodeValidator class of Apache Commons Validator library is presented as "pinned class" icon. What does it mean? I don't see any unusual things it this class. idea screenshot

like image 671
Flashrunner Avatar asked Jan 16 '17 14:01

Flashrunner


1 Answers

According to this, the "pinned" symbol represents a final Java class. As you can see with the link you provided, the CodeValidator class is, indeed, final.

like image 66
Pat G Avatar answered Oct 20 '22 16:10

Pat G