diff options
Diffstat (limited to 'qtjava/javalib/org/trinitydesktop/qt/TQTextIStream.java')
-rw-r--r-- | qtjava/javalib/org/trinitydesktop/qt/TQTextIStream.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/qtjava/javalib/org/trinitydesktop/qt/TQTextIStream.java b/qtjava/javalib/org/trinitydesktop/qt/TQTextIStream.java new file mode 100644 index 00000000..e96e0a6f --- /dev/null +++ b/qtjava/javalib/org/trinitydesktop/qt/TQTextIStream.java @@ -0,0 +1,24 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.trinitydesktop.qt; + +import org.trinitydesktop.qt.Qt; + +public class TQTextIStream extends TQTextStream { + protected TQTextIStream(Class dummy){super((Class) null);} + public TQTextIStream(String s) { + super((Class) null); + newTQTextIStream(s); + } + private native void newTQTextIStream(String s); + public TQTextIStream(byte[] ba) { + super((Class) null); + newTQTextIStream(ba); + } + private native void newTQTextIStream(byte[] ba); + /** 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(); +} |