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.
31 lines
1.1 KiB
31 lines
1.1 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
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();
|
|
}
|