Available options vary by JBuilder edition.
The ClassInsight function simplifies searching for a class. The same functionality is used under different names in different places in JBuilder. Some of these can accomplish tasks using the found class:
Enter the class name you want to find. If you started typing in the editor before invoking ClassInsight, what you typed will show here.
A list of possible matches appears in the Matching List as you type.
Select the class you want and double-click or press Enter. Use your mouse or use the up and down arrows to navigate within the Matching list.
This is a feature of ClassInsight in the editor in JBuilder SE and Enterprise.
These options control how ClassInsight inserts the selected class into the cursor location, and whether and how it adds an import statement to the import list.
Inserts the short class name and adds an import statement that uses the full package and class name. For example,
BorderLayout
import java.awt.BorderLayout;
Inserts the short class name and adds the package import statement. For example,
BorderLayout
import java.awt.*;
Inserts the complete class name (package + class name) without using an import statement. For example,
java.awt.BorderLayout