io.qt.help.QCompressedHelpInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-help Show documentation
Show all versions of qtjambi-help Show documentation
Classes for integrating documentation into applications, similar to Qt Assistant.
package io.qt.help;
import io.qt.*;
/**
* Access to the details about a compressed help file
* Java wrapper for Qt class QCompressedHelpInfo
*/
public final class QCompressedHelpInfo extends QtObject
implements java.lang.Cloneable
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See QCompressedHelpInfo:: QCompressedHelpInfo()
*/
public QCompressedHelpInfo(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QCompressedHelpInfo instance);
/**
* See QCompressedHelpInfo:: QCompressedHelpInfo(QCompressedHelpInfo)
*/
public QCompressedHelpInfo(io.qt.help.@NonNull QCompressedHelpInfo other){
super((QPrivateConstructor)null);
initialize_native(this, other);
}
private native static void initialize_native(QCompressedHelpInfo instance, io.qt.help.QCompressedHelpInfo other);
/**
* See QCompressedHelpInfo:: component()const
*/
@QtUninvokable
public final java.lang.@NonNull String component(){
return component_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native java.lang.String component_native_constfct(long __this__nativeId);
/**
* See QCompressedHelpInfo:: isNull()const
*/
@QtUninvokable
public final boolean isNull(){
return isNull_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native boolean isNull_native_constfct(long __this__nativeId);
/**
* See QCompressedHelpInfo:: namespaceName()const
*/
@QtUninvokable
public final java.lang.@NonNull String namespaceName(){
return namespaceName_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native java.lang.String namespaceName_native_constfct(long __this__nativeId);
/**
* See QCompressedHelpInfo:: operator=(QCompressedHelpInfo)
*/
@QtUninvokable
public final void assign(io.qt.help.@NonNull QCompressedHelpInfo other){
assign_native_cref_QCompressedHelpInfo(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void assign_native_cref_QCompressedHelpInfo(long __this__nativeId, long other);
/**
* See QCompressedHelpInfo:: swap(QCompressedHelpInfo&)
*/
@QtUninvokable
public final void swap(io.qt.help.@StrictNonNull QCompressedHelpInfo other){
java.util.Objects.requireNonNull(other, "Argument 'other': null not expected.");
swap_native_ref_QCompressedHelpInfo(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void swap_native_ref_QCompressedHelpInfo(long __this__nativeId, long other);
/**
* See QCompressedHelpInfo:: version()const
*/
@QtUninvokable
public final io.qt.core.@NonNull QVersionNumber version(){
return version_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.core.QVersionNumber version_native_constfct(long __this__nativeId);
/**
* See QCompressedHelpInfo:: fromCompressedHelpFile(QString)
*/
public native static io.qt.help.@NonNull QCompressedHelpInfo fromCompressedHelpFile(java.lang.@NonNull String documentationFileName);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QCompressedHelpInfo(QPrivateConstructor p) { super(p); }
/**
* Creates and returns a copy of this object.
See QCompressedHelpInfo:: QCompressedHelpInfo(QCompressedHelpInfo)
*/
@QtUninvokable
@Override
public QCompressedHelpInfo clone() {
return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private static native QCompressedHelpInfo clone_native(long __this_nativeId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy