Reputation: 4961
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.
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
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:
Upvotes: 1