Add javafx module
Some checks failed
zdm/undo-redo/pipeline/head There was a failure building this commit

The undo-redo-javafx module will contain the JavaFX-compatible API for
Undo-Redo.
This commit is contained in:
2021-12-12 05:59:28 +01:00
parent d80dd94e90
commit d49772a127
6 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/**
* Contains JavaFX-based wrapper API for integrating Undo-Redo with JavaFX.
*
* @author Kai S. K. Engelbart
* @since 0.0.1
*/
package dev.kske.undoredo.javafx;

View File

@ -0,0 +1,13 @@
/**
* Contains JavaFX-based wrapper API for integrating Undo-Redo with JavaFX.
*
* @author Kai S. K. Engelbart
* @since 0.0.1
*/
module dev.kske.undoredo.javafx {
exports dev.kske.undoredo.javafx;
requires dev.kske.undoredo.core;
requires javafx.base;
}