Registry / other / javafx-graphics

javafx-graphics

JSON →
library25.0.2javamavenunverified

Provides the core graphics and UI controls for JavaFX applications.

<dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> <version>25.0.2</version> </dependency>
INSTALL
IMPORT
SIG · JAVAFX-GRAPHICS
J
javafx-graphics
otherjavav25.0.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Scene
javafx.scene.Scene

Minimal JavaFX application showing a window with a label.

import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.stage.Stage; public class App extends javafx.application.Application { public void start(Stage stage) { Label label = new Label("Hello, JavaFX!"); stage.setScene(new Scene(label, 300, 200)); stage.show(); } public static void main(String[] args) { launch(); } }
Debug
Known issues
breakingJavaFX modules must be explicitly added to module-path or classpath in Java 9+.
fix
Add --module-path /path/to/javafx-sdk/lib --add-modules javafx.controls to JVM arguments.
affects: >=11
Upgrade
Version history
25.0.2latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
javafx-graphics — mvn dependency:get javafx-graphics · libregistry