io.qt.script.QtJambi_LibraryUtilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-script Show documentation
Show all versions of qtjambi-script Show documentation
Classes for making Qt applications scriptable. Deprecated in favor of the QJS* classes in the Qt QML module.
The newest version!
package io.qt.script;
import io.qt.*;
import static io.qt.QtUtilities.*;
/**
* @hidden
*/
final class QtJambi_LibraryUtilities {
final static int qtMajorVersion = 5;
final static int qtMinorVersion = 15;
final static int qtJambiPatch = 23;
final static InternalAccess internal;
static{
try {
initializePackage("io.qt.core");
loadQtLibrary("Script", LibraryRequirementMode.Mandatory);
loadQtJambiLibrary("Script");
} catch(Error t) {
throw t;
} catch(Throwable t) {
throw new ExceptionInInitializerError(t);
}
internal = internalAccess();
}
private static native InternalAccess internalAccess();
static void initialize() { };
private QtJambi_LibraryUtilities() throws InstantiationError { throw new InstantiationError("Cannot instantiate QtJambi_LibraryUtilities."); }
}