summaryrefslogtreecommitdiffhomepage
path: root/IDE/src/main/java/org/elmahrouss/SystemInfo.java
blob: ad4805fb832ff60d2022909cac6b694e3b0854ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *	========================================================
 *
 *	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");
    }

}