Create module-info.java

This commit is contained in:
aaditagrawal 2024-10-25 15:10:20 +05:30 committed by GitHub
parent e91511d5fb
commit 118c27fe35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}