Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebMutableURLRequest.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebMutableURLRequest.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebMutableURLRequest.java b/bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebMutableURLRequest.java
new file mode 100644
index 0000000000..4ca8257869
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebMutableURLRequest.java
@@ -0,0 +1,47 @@
+/*******************************************************************************
+ * Copyright (c) 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.webkit;
+
+
+import org.eclipse.swt.internal.ole.win32.COM;
+
+public class IWebMutableURLRequest extends IWebURLRequest {
+
+public IWebMutableURLRequest (int /*long*/ address) {
+ super (address);
+}
+
+public int setAllowsAnyHTTPSCertificate () {
+ return COM.VtblCall (29, getAddress ());
+}
+
+public int setHTTPBody (int /*long*/ data) {
+ return COM.VtblCall (21, getAddress (), data);
+}
+
+public int setHTTPBodyStream (int /*long*/ data) {
+ return COM.VtblCall (22, getAddress (), data);
+}
+
+public int setHTTPMethod (int post) {
+ return COM.VtblCall (23, getAddress (), post);
+}
+
+public int setURL (int /*long*/ theUrl) {
+ return COM.VtblCall (27, getAddress (), theUrl);
+}
+
+public int setValue (int /*long*/ value, int /*long*/ field) {
+ return COM.VtblCall (28, getAddress (), value, field);
+}
+
+
+}

Back to the top