Reputation: 11
when i used alt + '/' in eclipse ,i don't understand the symbol and the char a in front of method name . example : ·A add(String e) : boolean - Colletion ·D foreach(...) : void what the ·A or ·D mean?
Upvotes: 1
Views: 95
Reputation: 858
It indicates that this is an abtract ("A") public method (green circle). The "D" indicates a default method.
You can see what all the Eclipse symbols mean here.
Upvotes: 1