impliedImportPackages
Which packages are automatically imported. The default mimics Java, importing just java.reflect.
To save your programmers extra cruft, consider adding more packages specific to your application.
The following achieve the same results :
impliedImportPackages.add( "my.package" )
import my.package.*
Content copied to clipboard