Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse package names instead of imports

How to configure Eclipse to always use fully qualified names instead of automatically adding imports ?

i.e. if you are using Foo, Eclipse does an import of com.stackoverflow.Foo; I would like it to always write com.stackoverflow.Foo when Foo is used.

Please don't ask why. :)

like image 997
zilert Avatar asked Jan 19 '23 04:01

zilert


1 Answers

in Panel Window > Preferences > Java > Editor > Content Assist

uncheck "Add import instead of qualified name"

like image 85
Sean Patrick Floyd Avatar answered Jan 21 '23 19:01

Sean Patrick Floyd