vote up 1 vote down star

I'm in Eclipse writing Java. I come from Visual Studio with Resharper writing C#.

When Content Assist comes up, I see all the private members of a class, even though I'm not editing that class. Is there a way I can turn that off?

It's really distracting.

flag

56% accept rate

2 Answers

vote up 1 vote down check

Window -> Preferences -> Java -> Editor ->Content Assist -> Hide proposals not visible in the invocation context

link|flag
That doesn't seem to work for me. Others in the office said the same thing, and it works for them, but not for me. – ageektrapped Jan 8 at 18:16
Strange. I've tested it before answering and it works for me, too (in Eclipse Ganymede). – starblue Jan 8 at 19:32
vote up 0 vote down

If you do not explicitly write a method's access level (public, protected, or private), then it will default to package-private, and these methods will probably been shown in Content Assist.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.