You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
15 years ago
|
//Auto-generated by kalyptus. DO NOT EDIT.
|
||
11 years ago
|
package org.trinitydesktop.qt;
|
||
15 years ago
|
|
||
11 years ago
|
import org.trinitydesktop.qt.Qt;
|
||
15 years ago
|
|
||
13 years ago
|
public class TQXmlInputSource implements QtSupport {
|
||
15 years ago
|
private long _qt;
|
||
|
private boolean _allocatedInJavaWorld = true;
|
||
13 years ago
|
protected TQXmlInputSource(Class dummy){}
|
||
15 years ago
|
|
||
13 years ago
|
public TQXmlInputSource() {
|
||
|
newTQXmlInputSource();
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQXmlInputSource();
|
||
|
public TQXmlInputSource(TQIODeviceInterface dev) {
|
||
|
newTQXmlInputSource(dev);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQXmlInputSource(TQIODeviceInterface dev);
|
||
|
public TQXmlInputSource(TQFile file) {
|
||
|
newTQXmlInputSource(file);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQXmlInputSource(TQFile file);
|
||
|
public TQXmlInputSource(TQTextStream stream) {
|
||
|
newTQXmlInputSource(stream);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQXmlInputSource(TQTextStream stream);
|
||
15 years ago
|
public native void setData(String dat);
|
||
|
public native void setData(byte[] dat);
|
||
|
public native void fetchData();
|
||
|
public native String data();
|
||
|
public native char next();
|
||
|
public native void reset();
|
||
|
protected native String fromRawData(byte[] data, boolean beginning);
|
||
|
protected native String fromRawData(byte[] data);
|
||
|
/** 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();
|
||
|
}
|