forked from Col-E/BentoFX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-info.java
More file actions
29 lines (26 loc) · 776 Bytes
/
Copy pathmodule-info.java
File metadata and controls
29 lines (26 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import org.jspecify.annotations.NullMarked;
/**
* A docking system for JavaFX.
* <p>
* Everything is open/exported. Do whatever you want.
* </p>
*/
@NullMarked
open module bento.fx {
requires static org.jspecify;
requires javafx.base;
requires javafx.graphics;
requires javafx.controls;
requires java.desktop;
exports software.coley.bentofx;
exports software.coley.bentofx.building;
exports software.coley.bentofx.control;
exports software.coley.bentofx.control.canvas;
exports software.coley.bentofx.dockable;
exports software.coley.bentofx.event;
exports software.coley.bentofx.layout;
exports software.coley.bentofx.layout.container;
exports software.coley.bentofx.path;
exports software.coley.bentofx.search;
exports software.coley.bentofx.util;
}