You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQDomCharacterData extends TQDomNode {
|
|
protected TQDomCharacterData(Class dummy){super((Class) null);}
|
|
public TQDomCharacterData() {
|
|
super((Class) null);
|
|
newTQDomCharacterData();
|
|
}
|
|
private native void newTQDomCharacterData();
|
|
public TQDomCharacterData(TQDomCharacterData x) {
|
|
super((Class) null);
|
|
newTQDomCharacterData(x);
|
|
}
|
|
private native void newTQDomCharacterData(TQDomCharacterData x);
|
|
public native String substringData(long offset, long count);
|
|
public native void appendData(String arg);
|
|
public native void insertData(long offset, String arg);
|
|
public native void deleteData(long offset, long count);
|
|
public native void replaceData(long offset, long count, String arg);
|
|
public native int length();
|
|
public native String data();
|
|
public native void setData(String arg1);
|
|
public native int nodeType();
|
|
public native boolean isCharacterData();
|
|
/** Deletes the wrapped C++ instance */
|
|
protected native void finalize() throws InternalError;
|
|
/** Delete the wrapped C++ instance ahead of finalize() */
|
|
public native void dispose();
|
|
/** Has the wrapped C++ instance been deleted? */
|
|
public native boolean isDisposed();
|
|
}
|