io.qt.gui.QGenericPluginFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi Show documentation
Show all versions of qtjambi Show documentation
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.gui;
import io.qt.*;
/**
* Creates plugin drivers
* Java wrapper for Qt class QGenericPluginFactory
*/
public class QGenericPluginFactory extends QtObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See QGenericPluginFactory:: QGenericPluginFactory()
*/
public QGenericPluginFactory(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QGenericPluginFactory instance);
/**
* See QGenericPluginFactory:: create(QString, QString)
*/
public native static io.qt.core.@Nullable QObject create(java.lang.@NonNull String arg__1, java.lang.@NonNull String arg__2);
/**
* See QGenericPluginFactory:: keys()
*/
public native static io.qt.core.@NonNull QStringList keys();
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QGenericPluginFactory(QPrivateConstructor p) { super(p); }
}