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