Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Greater than symbol in Eclipse beside class

In the image below, what does the greater than symbol beside the Ladder class mean? The symbol doesn't appear here.

Greater than signs next to classes

like image 854
Joel Christophel Avatar asked Sep 08 '13 04:09

Joel Christophel


People also ask

How do I get rid of the question mark in eclipse?

The question mark means the code is not yet added and committed to your repository. This is normal and would disappear as soon as you commit your code to git.

What is the meaning of question mark in eclipse?

The question mark indicates that these files are new that means unknown for your version control system (CVS, git or whatever you are using). When you commit the files the question mark will disappear.

How do I show references in eclipse?

Put the mouse cursor/caret on the class or method name in source code and hit Ctrl + Shift + G .


2 Answers

The > before the file name indicates that changes to that file's contents have not yet been committed to a particular source control repository.

like image 186
arshajii Avatar answered Sep 17 '22 21:09

arshajii


it looks like you have made changes to Ladder.java file and not comitted them yet. Once you commit them or revert those changes from workspace ">" will disapper.

like image 24
Mittinti Ramana Murthy Avatar answered Sep 19 '22 21:09

Mittinti Ramana Murthy