io.qt.core.QPermission 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.core;
import io.qt.NonNull;
import io.qt.QtObject;
/**
* Java wrapper for Qt's class QPermission
*/
public abstract class QPermission extends QtObject implements java.lang.Cloneable{
QPermission(QPrivateConstructor p) {
super(p);
}
@Override
public abstract @NonNull QPermission clone();
}