summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2002-09-17 14:06:14 +0000
committerStephan Bergmann <sb@openoffice.org>2002-09-17 14:06:14 +0000
commit23196937697efeb94385cb7fe05038f0fb5948de (patch)
treed9043e4bb9f4dd7c46b4d1f6d1514dfa4723f527
parentcaa6bec08c4f7c2521d3a7e70f3e392b52cac0fe (diff)
#98508# Cleaned up.
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java41
1 files changed, 16 insertions, 25 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java b/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java
index 20b802e621fc..d7781f8b65db 100644
--- a/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java
+++ b/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java
@@ -2,9 +2,9 @@
*
* $RCSfile: IReceiver.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kr $ $Date: 2001-05-17 12:46:27 $
+ * last change: $Author: sb $ $Date: 2002-09-17 15:06:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -50,7 +50,7 @@
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
- * Copyright: 2000 by Sun Microsystems, Inc.
+ * Copyright: 2002 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
@@ -61,31 +61,22 @@
package com.sun.star.lib.uno.environments.remote;
-
-import java.io.IOException;
-
-import com.sun.star.lib.uno.environments.java.IRequester;
-
/**
- * This interface is an abstraction for giving back
- * a reply for a request.
- * <p>
- * @version $Revision: 1.3 $ $ $Date: 2001-05-17 12:46:27 $
- * @author Kay Ramme
- * @see com.sun.star.uno.IQueryInterface
+ * An abstraction for giving back a reply for a request.
+ *
+ * @version $Revision: 1.4 $ $ $Date: 2002-09-17 15:06:14 $
+ * @author Kay Ramme
+ * @see com.sun.star.uno.IQueryInterface
*/
public interface IReceiver {
/**
- * Sends back a reply for the passed request id.
- * <p>
- * @param threadId the thread id of the request
- * @param requestId the request id
- * @param status the status of the request
- * @param result the result of the request
- * @param resultClass the type of the result
- * @param params the out and in/out parameters passed with the request
- * @param signature the types of the out and in/out parameters
+ * Send back a reply for a request.
+ *
+ * @param exception <CODE>true</CODE> if an exception (instead of a normal
+ * result) is sent back.
+ * @param threadId the thread ID of the request.
+ * @param result the result of executing the request, or an exception thrown
+ * while executing the request.
*/
- public void sendReply(boolean exception, ThreadId threadId, Object result);
+ void sendReply(boolean exception, ThreadId threadId, Object result);
}
-