blob: 4250e022026b5b4e629df9b66dfb1ec567323fcd (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
import java.util.ArrayList;
public class QHttpHeader implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected QHttpHeader(Class dummy){}
public native String value(String key);
public native void setValue(String key, String value);
public native void removeValue(String key);
public native ArrayList keys();
public native boolean hasKey(String key);
public native boolean hasContentLength();
public native int contentLength();
public native void setContentLength(int len);
public native boolean hasContentType();
public native String contentType();
public native void setContentType(String type);
public native String toString();
public native boolean isValid();
public native int majorVersion();
public native int minorVersion();
}
|