blob: c2a7a5ae2fc25aa075b07d41a3a980c9e4da8e3b (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQSqlEditorFactory extends TQEditorFactory {
protected TQSqlEditorFactory(Class dummy){super((Class) null);}
public TQSqlEditorFactory(TQObject parent, String name) {
super((Class) null);
newTQSqlEditorFactory(parent,name);
}
private native void newTQSqlEditorFactory(TQObject parent, String name);
public TQSqlEditorFactory(TQObject parent) {
super((Class) null);
newTQSqlEditorFactory(parent);
}
private native void newTQSqlEditorFactory(TQObject parent);
public TQSqlEditorFactory() {
super((Class) null);
newTQSqlEditorFactory();
}
private native void newTQSqlEditorFactory();
public native TQWidget createEditor(TQWidget parent, TQVariant variant);
public native TQWidget createEditor(TQWidget parent, TQSqlField field);
public static native TQEditorFactory defaultFactory();
public static native void installDefaultFactory(TQSqlEditorFactory factory);
/** 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();
}
|