summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQSql.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQSql.java')
-rw-r--r--qtjava/javalib/org/kde/qt/TQSql.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQSql.java b/qtjava/javalib/org/kde/qt/TQSql.java
new file mode 100644
index 00000000..e6c058c1
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/TQSql.java
@@ -0,0 +1,42 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.qt;
+
+import org.kde.qt.Qt;
+
+public class TQSql implements QtSupport {
+ private long _qt;
+ private boolean _allocatedInJavaWorld = true;
+ protected TQSql(Class dummy){}
+
+ public static final int None = -1;
+ public static final int Insert = 0;
+ public static final int Update = 1;
+ public static final int Delete = 2;
+
+ public static final int BeforeFirst = -1;
+ public static final int AfterLast = -2;
+
+ public static final int Cancel = -1;
+ public static final int No = 0;
+ public static final int Yes = 1;
+
+ public static final int In = 1;
+ public static final int Out = 2;
+ public static final int InOut = 3;
+
+ public static final int Tables = 0x01;
+ public static final int SystemTables = 0x02;
+ public static final int Views = 0x04;
+ public static final int AllTables = 0xff;
+
+ public TQSql() {
+ newTQSql();
+ }
+ private native void newTQSql();
+ /** 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();
+}