blob: ddaff382d85b856409aceab233fecc100daa04d8 (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.TQt;
public class TQHttpResponseHeader extends TQHttpHeader {
protected TQHttpResponseHeader(Class dummy){super((Class) null);}
public TQHttpResponseHeader() {
super((Class) null);
newTQHttpResponseHeader();
}
private native void newTQHttpResponseHeader();
public TQHttpResponseHeader(TQHttpResponseHeader header) {
super((Class) null);
newTQHttpResponseHeader(header);
}
private native void newTQHttpResponseHeader(TQHttpResponseHeader header);
public native int statusCode();
public native String reasonPhrase();
public native int majorVersion();
public native int minorVersion();
public native String toString();
protected native boolean parseLine(String line, int number);
/** 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();
}
|