Primitive is a JavaFX framework which provides better logging and organization.
This project is abandoned because I am no longer interested in developing it. However, there’s still a good alternative if you’re using Kotlin, which is TornadoFX.
PFXMVC is a library which has a primitive MVC specifications and
a couple of units which provide a quick start to a JavaFX project.
You can get installation guide here.
If you are not good with Jitpack, add below to your repositories in pom.xml
file:
<repositories>
<!-- Your other repositories if exists -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
And add the dependency as following:
<dependencies>
<!-- Your other dependencies -->
<dependency>
<groupId>com.github.User</groupId>
<artifactId>Repo</artifactId>
<version>LATEST</version>
</dependency>
</dependencies>
You can change version
if you wish to use a specific one, but you
can also use LATEST
to get the latest version.
In progress… There will be pieces of video tutorials or blog articles
until then and I will probably update here.
This library might not hold the sense of classical MVC pattern because
it is aimed to implement MVC pattern in sense of JavaFX. For instance,
controller, in this case, is aimed to extend the functionalities of
classical JavaFX controller.