- Java
- Basics
- Classes
- Objects
- Arrays
- Variables
- Loops
- Numbers
- Strings
- Exceptions
- Regexp
- OOP
- Inheritance
- Polymorphism
- Static Keyword
- Abstract Keyword
- Interfaces
- Constructors
- Packages
- Nested Classes
- Final Keyword
- Swing
- Frame
- Panel
- Listener
- Combo Box
- Label
- Image
- Menu
- Table
- Layout
- Drawing
- Timer
- Designer
- Collections
- Lists
- Comparable
- Sets
- Maps
- Generics
- Properties
- Streams
- Json
- Compiler
- Sublime Text
- Apache Ant
- I/O
- Streams IO
- Socket
- Watching Files
- Logger
- Clipboard
- Encrypt
- Junit
- About Junit
- Test Case
- Suite Test
- Annotations
- Exceptions
- JavaFX
- Openjfx ♣
- Scene Builder
- First App
- Jar Archive
- On Action
- Change Listener
- Threads
- Create Thread
- Sleep
- Lock
- Scheduler
JavaFX
OpenJFX is the open source home of JavaFX development (next generation client Api).
sudo apt update
sudo apt install openjfx
Dependency
Add openjfx dependencies (pom.xml) in your Maven project.
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>17</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>17</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>17</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics </artifactId>
<version>17</version>
<classifier>win</classifier>
</dependency>
Last update: 61 days ago