Create module-info.java

This commit is contained in:
aaditagrawal 2024-10-25 15:06:45 +05:30 committed by GitHub
parent ea2405373c
commit a3b8a1db13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
src/module-info.java Normal file
View file

@ -0,0 +1,10 @@
module jfxlabproj {
requires javafx.controls;
requires javafx.fxml;
requires javafx.graphics;
requires java.desktop; // To access BufferedImage and ImageIO
requires javafx.swing; // To access SwingFXUtils
opens jfxlabproj to javafx.fxml;
exports jfxlabproj;
}