I have installed the Eclipse [Version: Photon Release (4.8.0)] and JDK 10 on a MacBookPro with macOS 10.13.5
When I write in my code: import java.awt.*;
Is the
java.awt
included in JDK 10?
Ye, the package does exist. The Java10 API docs do confirm the same as well.
If yes where is and how can I make visible to Eclipse?
In a modular code, all you need to do, is to resolve the java.desktop module by declaring a dependency on it in your module-descriptor file(module-info.java
). i.e.
requires java.desktop;