io.qt.gui.gl.GLDEBUGPROC 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.gl;
import io.qt.*;
/**
* Java wrapper for Qt callable GLDEBUGPROC
*/
@FunctionalInterface
public interface GLDEBUGPROC extends QtObjectInterface {
public void accept(int source, int type, int id, int severity, java.lang.String message);
/**
* @hidden
* Implementor class for interface {@link GLDEBUGPROC}
*/
public static abstract class Impl extends QtObject implements GLDEBUGPROC{
static {
QtJambi_LibraryUtilities.initialize();
}
public Impl(){
super((QPrivateConstructor)null);
initialize_native(this);
}
protected Impl(QPrivateConstructor p){
super(p);
}
private static native void initialize_native(GLDEBUGPROC instance);
@NativeAccess
private final static class ConcreteWrapper extends Impl {
private ConcreteWrapper(QPrivateConstructor c){
super(c);
}
@Override
public native void accept(int source, int type, int id, int severity, java.lang.String message);
}
}
}