Eclipse Content Assist
Using Content Assist
In Eclipse, we can use code completion to speed up development. By default, automatic suggestions appear after typing ".", used for automatic completion of class members.
The configuration for automatic suggestions is located at: window -> Preferences -> Java -> Editor -> Content Assist.
If automatic suggestions could appear after typing the first letter of a class and pressing alt + /.
The content that appears after typing "." includes:
- Class variables
- Class methods
- Superclass methods
- Other related classes