summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebDataSource.java
blob: 465253736f224553579e77ef79af23bf98b1f754 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*******************************************************************************
 * Copyright (c) 2007 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.cocoa;

public class WebDataSource extends NSObject {

public WebDataSource() {
	super();
}

public WebDataSource(int id) {
	super(id);
}

//public void addSubresource(WebResource subresource) {
//	OS.objc_msgSend(this.id, OS.sel_addSubresource_1, subresource != null ? subresource.id : 0);
//}

public NSData data() {
	int result = OS.objc_msgSend(this.id, OS.sel_data);
	return result != 0 ? new NSData(result) : null;
}

//public id initWithRequest(NSURLRequest request) {
//	int result = OS.objc_msgSend(this.id, OS.sel_initWithRequest_1, request != null ? request.id : 0);
//	return result != 0 ? new id(result) : null;
//}

//public NSURLRequest initialRequest() {
//	int result = OS.objc_msgSend(this.id, OS.sel_initialRequest);
//	return result != 0 ? new NSURLRequest(result) : null;
//}

public boolean isLoading() {
	return OS.objc_msgSend(this.id, OS.sel_isLoading) != 0;
}

//public WebResource mainResource() {
//	int result = OS.objc_msgSend(this.id, OS.sel_mainResource);
//	return result != 0 ? new WebResource(result) : null;
//}

public NSString pageTitle() {
	int result = OS.objc_msgSend(this.id, OS.sel_pageTitle);
	return result != 0 ? new NSString(result) : null;
}

public WebDocumentRepresentation representation() {
	int result = OS.objc_msgSend(this.id, OS.sel_representation);
	return result != 0 ? new WebDocumentRepresentation (result) : null;
}

public NSMutableURLRequest request() {
	int result = OS.objc_msgSend(this.id, OS.sel_request);
	return result != 0 ? new NSMutableURLRequest(result) : null;
}

public NSURLResponse response() {
	int result = OS.objc_msgSend(this.id, OS.sel_response);
	return result != 0 ? new NSURLResponse(result) : null;
}

//public WebResource subresourceForURL(NSURL URL) {
//	int result = OS.objc_msgSend(this.id, OS.sel_subresourceForURL_1, URL != null ? URL.id : 0);
//	return result != 0 ? new WebResource(result) : null;
//}

//public NSArray subresources() {
//	int result = OS.objc_msgSend(this.id, OS.sel_subresources);
//	return result != 0 ? new NSArray(result) : null;
//}

public NSString textEncodingName() {
	int result = OS.objc_msgSend(this.id, OS.sel_textEncodingName);
	return result != 0 ? new NSString(result) : null;
}

//public NSURL unreachableURL() {
//	int result = OS.objc_msgSend(this.id, OS.sel_unreachableURL);
//	return result != 0 ? new NSURL(result) : null;
//}

//public WebArchive webArchive() {
//	int result = OS.objc_msgSend(this.id, OS.sel_webArchive);
//	return result != 0 ? new WebArchive(result) : null;
//}

public WebFrame webFrame() {
	int result = OS.objc_msgSend(this.id, OS.sel_webFrame);
	return result != 0 ? new WebFrame(result) : null;
}

}