io.qt.gui.QWindowsMimeConverter 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.*;
/**
* Maps open-standard MIME to Window Clipboard formats
* Java wrapper for Qt class QWindowsMimeConverter
*/
public class QWindowsMimeConverter extends QtObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This constructor is a place holder intended to prevent
* users from subclassing the class. Certain classes can
* unfortunately only be subclasses internally. The constructor
* will indiscriminately throw an exception if called. If the
* exception is ignored, any use of the constructed object will
* cause an exception to occur.
* @throws QClassCannotBeSubclassedException
**/
@SuppressWarnings("unused")
private QWindowsMimeConverter() throws QClassCannotBeSubclassedException {
super((QPrivateConstructor)null);
throw new QClassCannotBeSubclassedException(QWindowsMimeConverter.class);
}
/**
* See QWindowsMimeConverter:: registerMimeType(QString)
*/
public native static int registerMimeType(java.lang.@NonNull String mimeType);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QWindowsMimeConverter(QPrivateConstructor p) { super(p); }
}