Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Content Assist

Tags:

java

eclipse

When I use Eclipse's Content Assist (Ctrl + Space) I don't want to see the methods inherited from the object class. I searched through the Eclipse help but I can't seem to figure it out.

like image 543
Giannis Krimitzas Avatar asked Jul 07 '13 18:07

Giannis Krimitzas


People also ask

What is eclipse Content Assist?

The Content Assist feature enables the selection and insertion of existing code elements to complete partially entered code. The Content Assist preferences page allows you to configure your Content Assist preferences.

How do I get Content Assist in eclipse?

To enable the Content Assist window to open automatically, go to the Content Assist Preferences page, accessed from Window | Preferences | PHP | Editor | Content Assist and mark the 'Enable auto-activation' checkbox.

How do I change Content Assist in eclipse?

Step 1: Open your Eclipse or Spring Tool Suite, then go to the Window > Preferences as shown in the below image. Step 2: In the next screen go to the Java > Editor > Content Assist > Auto activation triggers for Java as shown in the below image.

How do I turn off Content Assist in eclipse?

Java > Editor > Content assist > Advanced Uncheck all and hit apply. Hope this works if you still haven't found an answer. Save this answer.


1 Answers

You can use the type filters to ignore the class java.lang.Object. This dialog can be found under Preferences -> Java -> Appearance.

Type Filters in Eclipse

like image 114
LaurentG Avatar answered Oct 04 '22 10:10

LaurentG