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.
tdebindings/qtjava/javalib/org/trinitydesktop/qt/TQHttpHeader.java

28 lines
903 B

//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();
}