The EGL import statement identifies a set of parts that are in a specified package, and allows you to reference the imported parts as if they were in the same package as the file containing the import statement. If the statement identifies a fully qualified part name, it is called a single part import.
import com.companyb.crmpackage.*;
This is called an on demand import; parts are imported only as needed.
You can also import packages from outside your current project. For more information, refer to the EGL Generation Guide.
To understand how EGL resolves potential conflicts between part names, see EGL part resolution rules.