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 F开发者_如何学运维oo
, 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. :)
in Panel Window > Preferences > Java > Editor > Content Assist
uncheck "Add import instead of qualified name"
精彩评论