Simplify full-featured names in Eclipse

Does anyone know a plugin for Eclipse that replaces fully qualified Java class names with simple and appropriate import, where possible? It would be even better if this could be performed as a Save action.

+7
java eclipse eclipse-jdt
source share
2 answers

Here's a plugin offering this feature called Clean Qualified Types Plugin (CQTP): http://blog.mi-ernst.de/projekte/

+1
source share

Not. But you can use the "Add Import" command ( Ctrl + Shift + M ) for each full-featured identifier to convert it to import + short name.

+13
source share

All Articles