io.qt.xml.QDomCDATASection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-xml Show documentation
Show all versions of qtjambi-xml Show documentation
C++ implementations of SAX and DOM.
The newest version!
package io.qt.xml;
import io.qt.*;
/**
* Represents an XML CDATA section
* Java wrapper for Qt class QDomCDATASection
*/
public class QDomCDATASection extends io.qt.xml.QDomText
implements java.lang.Cloneable
{
/**
* See QDomCDATASection:: QDomCDATASection()
*/
public QDomCDATASection(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QDomCDATASection instance);
/**
* See QDomCDATASection:: QDomCDATASection(QDomCDATASection)
* @param cdataSection
*/
public QDomCDATASection(io.qt.xml.@NonNull QDomCDATASection cdataSection){
super((QPrivateConstructor)null);
initialize_native(this, cdataSection);
}
private native static void initialize_native(QDomCDATASection instance, io.qt.xml.QDomCDATASection cdataSection);
/**
* See QDomCDATASection:: operator=(QDomCDATASection)
* @param other
*/
@QtUninvokable
public final void assign(io.qt.xml.@NonNull QDomCDATASection other){
assign_native_cref_QDomCDATASection(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void assign_native_cref_QDomCDATASection(long __this__nativeId, long other);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QDomCDATASection(QPrivateConstructor p) { super(p); }
/**
* Creates and returns a copy of this object.
*/
@QtUninvokable
@Override
public QDomCDATASection clone() {
return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private static native QDomCDATASection clone_native(long __this_nativeId);
}