/* * ======================================================== * * MPCC * Copyright Mahrouss Logic, all rights reserved. * * ======================================================== */ package org.elmahrouss; public class SystemInfo { public static String javaVersion() { return System.getProperty("java.version"); } public static String javafxVersion() { return System.getProperty("javafx.version"); } }