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.
tdebindings/qtjava/javalib/org/kde/qt/TQXmlAttributes.java

37 lines
1.3 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQXmlAttributes implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected TQXmlAttributes(Class dummy){}
public TQXmlAttributes() {
newTQXmlAttributes();
}
private native void newTQXmlAttributes();
public native int index(String qName);
public native int index(String uri, String localPart);
public native int length();
public native int count();
public native String localName(int index);
public native String qName(int index);
public native String uri(int index);
public native String type(int index);
public native String type(String qName);
public native String type(String uri, String localName);
public native String value(int index);
public native String value(String qName);
public native String value(String uri, String localName);
public native void clear();
public native void append(String qName, String uri, String localPart, String value);
/** 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();
}