CW Holeman II
CW Holeman II

Reputation: 4961

Eclipse Installer > Eclipse IDE For Java Developers > Eclipse > Eclipse Marketplace > Kotlin > java.util.ArrayList?

Used equinox.launcher_1.5.600.v20191014-2022 to install Eclipse IDE for Java Developers 2019-12 then invoked Eclipse and used Eclipse Marketplace to install Kotlin Plugin for Eclipse 0.8.19. I created a Kotlin project. Using Package Explorer I expanded the contents of JRE System Library.

Package Explorer expanded the contents of JRE System Library.

I expected to see java.util.ArrayList be listed in order to use on kotlin-stdlib / kotlin.collections / ArrayList . Is there some other step missing?

Upvotes: 0

Views: 79

Answers (1)

greg-449
greg-449

Reputation: 111142

That listing is showing the 'modules' in the JRE. Modules were introduced in Java 9.

The 'java.util' package is in the 'java.base' module as show in this screen shot:

Expanded module list

Upvotes: 1

Related Questions