blob: d6fec641ec22b79a3fd1723aed07c06032a00ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QXmlAttributes implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected QXmlAttributes(Class dummy){}
public QXmlAttributes() {
newQXmlAttributes();
}
private native void newQXmlAttributes();
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();
}
|