2

I am referring specifically to the green plus sign in the screenshot below.

[edit] This is taken from "Outline" view, and I am coding in Java.

Screenshot of Eclipse icon, green plus sign

jzhang22
  • 124
  • 2
  • 10

2 Answers2

2

This might help: What do the icons in Eclipse mean?

From the icon index, the plus means add, the C means public class, and the warning means that there is a java element warning.

So from what I can assume, it means you can add a new public class, but is warning you of possible problems with your current project.

Community
  • 1
  • 1
Tory
  • 916
  • 1
  • 11
  • 19
  • Thanks for the link! The "add a new public class" doesn't make sense because this screenshot was from Outline view, where Eclipse shows the class/fields/methods. – jzhang22 Jul 24 '14 at 14:03
  • Can you provide a screenshot? Also, do you happen to have any extensions or packages that are not vanilla? – Tory Jul 24 '14 at 16:28
  • The screenshot of the icon is above. I would show the context, but I deleted that file and can't find the icon again. I do have another extension, maybe that's it. – jzhang22 Jul 25 '14 at 13:46
0

The green + sign is an overlay that shows that the visibility of the class is set to public. The orange is a warning that there could be a potential issue in that class. This might not necessarily stop your class from running or performing well. It is just telling you to be aware of something that may or may not be harmful.

sho fm
  • 11
  • 2