Rope
Rope

Reputation: 41

How do I know if I'm looking at Java interface or implementation file in Eclipse

I'm working with an old Java project, which uses the naming convention where interface is named MassiveWormholeGenerator and its implementation is named MassiveWormholeGeneratorImpl. Point is that the names are so long that the end of the file name is not visible in Eclipse editor tab. This means that I have to spend time to determine if I'm looking at the interface or implementation. Is there an easy way to keep this information visible constantly?

NamingConventionFlameWars > /dev/null

Upvotes: 0

Views: 65

Answers (2)

praveen_mohan
praveen_mohan

Reputation: 465

Title bar of the eclipse shows the full name of the file selected in editor

Upvotes: 1

Rope
Rope

Reputation: 41

It seems that Show in Breadcrumb action does just this. It can be found from the editor's popup menu.

Upvotes: 3

Related Questions