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.*;
I get the error:
The import java.awt cannot be resolved
Is the java.awt
included in JDK 10 ? If yes where is and how can I make visible to Eclipse? If no how can I add 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;