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.
37 lines
1.3 KiB
37 lines
1.3 KiB
15 years ago
|
//Auto-generated by kalyptus. DO NOT EDIT.
|
||
|
package org.kde.qt;
|
||
|
|
||
|
import org.kde.qt.Qt;
|
||
|
|
||
13 years ago
|
public class TQXmlAttributes implements QtSupport {
|
||
15 years ago
|
private long _qt;
|
||
|
private boolean _allocatedInJavaWorld = true;
|
||
13 years ago
|
protected TQXmlAttributes(Class dummy){}
|
||
15 years ago
|
|
||
13 years ago
|
public TQXmlAttributes() {
|
||
|
newTQXmlAttributes();
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQXmlAttributes();
|
||
15 years ago
|
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();
|
||
|
}
|