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

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

/**

 There are two classes that specifies the protocol between application
 (KIO.Job) and tdeioslave. SlaveInterface is the class to use on the application
 end, SlaveBase is the one to use on the slave end.
 A call to foo() results in a call to slotFoo() on the other end.
  See {@link SlaveInterfaceSignals} for signals emitted by SlaveInterface
		@short    There are two classes that specifies the protocol between application  (KIO.Job) and tdeioslave.

*/
public class SlaveInterface extends TQObject  {
	protected SlaveInterface(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public native void setConnection(Connection connection);
	public native Connection connection();
	public native void setProgressId(int id);
	public native int progressId();
	/**	 Send our answer to the MSG_RESUME (canResume) request
		 (to tell the "put" job whether to resume or not)
		     		@short   Send our answer to the MSG_RESUME (canResume) request  (to tell the "put" job whether to resume or not)
	*/
	public native void sendResumeAnswer(boolean resume);
	public native void setOffset(long offset);
	public native long offset();
}