blob: ad334ef6c81f147f9ebd2c91c508c14307d6ea1d (
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.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
import java.util.ArrayList;
public class TQHttpHeader implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected TQHttpHeader(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();
}
 |