summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/DavJob.java
blob: c1227fa1911213980f739a77230e2870f7fd117b (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQDomDocument;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;

/**

 The transfer job pumps data into and/or out of a Slave.
 Data is sent to the slave on request of the slave ( dataReq).
 If data coming from the slave can not be handled, the
 reading of data from the slave should be suspended.
		@short    The transfer job pumps data into and/or out of a Slave.
		@see #davPropFind
		@see #davPropPatch
		@see #davSearch

*/
public class DavJob extends TransferJob  {
	protected DavJob(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Use TDEIO.davPropFind(), TDEIO.davPropPatch() and
		 TDEIO.davSearch() to create a new DavJob.
			 		@short    Use TDEIO.davPropFind(), TDEIO.davPropPatch() and  TDEIO.davSearch() to create a new DavJob.
	*/
	public DavJob(KURL url, int method, String request, boolean showProgressInfo) {
		super((Class) null);
		newDavJob(url,method,request,showProgressInfo);
	}
	private native void newDavJob(KURL url, int method, String request, boolean showProgressInfo);
	/**	
		 Returns the response as a TQDomDocument.
				@return the response document
	 
		@short    Returns the response as a TQDomDocument.
	*/
	public native TQDomDocument response();
	protected native void slotFinished();
	protected native void slotData(byte[] data);
}