summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QVBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QVBox.java')
-rw-r--r--qtjava/javalib/org/kde/qt/QVBox.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QVBox.java b/qtjava/javalib/org/kde/qt/QVBox.java
new file mode 100644
index 00000000..6f558cfe
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/QVBox.java
@@ -0,0 +1,38 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.qt;
+
+import org.kde.qt.Qt;
+
+public class QVBox extends QHBox {
+ protected QVBox(Class dummy){super((Class) null);}
+ public native QMetaObject metaObject();
+ public native String className();
+ public QVBox(QWidget parent, String name, int f) {
+ super((Class) null);
+ newQVBox(parent,name,f);
+ }
+ private native void newQVBox(QWidget parent, String name, int f);
+ public QVBox(QWidget parent, String name) {
+ super((Class) null);
+ newQVBox(parent,name);
+ }
+ private native void newQVBox(QWidget parent, String name);
+ public QVBox(QWidget parent) {
+ super((Class) null);
+ newQVBox(parent);
+ }
+ private native void newQVBox(QWidget parent);
+ public QVBox() {
+ super((Class) null);
+ newQVBox();
+ }
+ private native void newQVBox();
+ public static native String tr(String arg1, String arg2);
+ public static native String tr(String arg1);
+ /** 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();
+}