io.qt.core.QXmlStreamNotationDeclaration Maven / Gradle / Ivy
package io.qt.core;
/**
* Represents a DTD notation declaration
* Java wrapper for Qt class QXmlStreamNotationDeclaration
*/
public class QXmlStreamNotationDeclaration extends io.qt.QtObject
implements java.lang.Cloneable
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See QXmlStreamNotationDeclaration::QXmlStreamNotationDeclaration()
*/
public QXmlStreamNotationDeclaration(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QXmlStreamNotationDeclaration instance);
/**
* See QXmlStreamNotationDeclaration::name()const
*/
@io.qt.QtUninvokable
public final java.lang.String name(){
return name_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.lang.String name_native_constfct(long __this__nativeId);
/**
* See QXmlStreamNotationDeclaration::operator==(QXmlStreamNotationDeclaration)const
*/
@io.qt.QtUninvokable
private final boolean operator_equal(io.qt.core.QXmlStreamNotationDeclaration other){
return operator_equal_native_cref_QXmlStreamNotationDeclaration_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@io.qt.QtUninvokable
private native boolean operator_equal_native_cref_QXmlStreamNotationDeclaration_constfct(long __this__nativeId, long other);
/**
* See QXmlStreamNotationDeclaration::publicId()const
*/
@io.qt.QtUninvokable
public final java.lang.String publicId(){
return publicId_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.lang.String publicId_native_constfct(long __this__nativeId);
/**
* See QXmlStreamNotationDeclaration::systemId()const
*/
@io.qt.QtUninvokable
public final java.lang.String systemId(){
return systemId_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.lang.String systemId_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QXmlStreamNotationDeclaration(QPrivateConstructor p) { super(p); }
@Override
@io.qt.QtUninvokable
public boolean equals(Object other) {
if (other instanceof io.qt.core.QXmlStreamNotationDeclaration) {
return operator_equal((io.qt.core.QXmlStreamNotationDeclaration) other);
}
return false;
}
@io.qt.QtUninvokable
@Override
public int hashCode() {
return hashCode_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native static int hashCode_native(long __this_nativeId);
@Override
public QXmlStreamNotationDeclaration clone() {
return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native QXmlStreamNotationDeclaration clone_native(long __this_nativeId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy