summaryrefslogtreecommitdiffstats
path: root/jurt/com/sun/star/lib/uno/environments/remote
diff options
context:
space:
mode:
Diffstat (limited to 'jurt/com/sun/star/lib/uno/environments/remote')
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/Job.java3
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/Message.java16
2 files changed, 9 insertions, 10 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/Job.java b/jurt/com/sun/star/lib/uno/environments/remote/Job.java
index f65ffff98ff0..8ec4492c4c01 100644
--- a/jurt/com/sun/star/lib/uno/environments/remote/Job.java
+++ b/jurt/com/sun/star/lib/uno/environments/remote/Job.java
@@ -27,7 +27,6 @@ import java.lang.reflect.InvocationTargetException;
import com.sun.star.lib.uno.typedesc.MethodDescription;
import com.sun.star.uno.Any;
-import com.sun.star.uno.IMethodDescription;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XCurrentContext;
@@ -79,7 +78,7 @@ public class Job {
if (_iMessage.isRequest()) {
Object result = null;
Throwable exception = null;
- IMethodDescription md = _iMessage.getMethod();
+ MethodDescription md = _iMessage.getMethod();
Object[] args = _iMessage.getArguments();
XCurrentContext oldCC = UnoRuntime.getCurrentContext();
UnoRuntime.setCurrentContext(_iMessage.getCurrentContext());
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/Message.java b/jurt/com/sun/star/lib/uno/environments/remote/Message.java
index 4a6921b080f2..b34295ae33be 100644
--- a/jurt/com/sun/star/lib/uno/environments/remote/Message.java
+++ b/jurt/com/sun/star/lib/uno/environments/remote/Message.java
@@ -19,8 +19,8 @@
package com.sun.star.lib.uno.environments.remote;
-import com.sun.star.uno.IMethodDescription;
-import com.sun.star.uno.ITypeDescription;
+import com.sun.star.lib.uno.typedesc.MethodDescription;
+import com.sun.star.lib.uno.typedesc.TypeDescription;
import com.sun.star.uno.XCurrentContext;
/**
@@ -29,7 +29,7 @@ import com.sun.star.uno.XCurrentContext;
public class Message {
public Message(
ThreadId threadId, boolean request, String objectId,
- ITypeDescription type, IMethodDescription method, boolean synchronous,
+ TypeDescription type, MethodDescription method, boolean synchronous,
XCurrentContext currentContext, boolean abnormalTermination,
Object result, Object[] arguments)
{
@@ -87,7 +87,7 @@ public class Message {
* @return the (non-<code>null</code>) type for a request, <code>null</code>
* for a reply.
*/
- public final ITypeDescription getType() {
+ public final TypeDescription getType() {
return type;
}
@@ -95,13 +95,13 @@ public class Message {
* Returns the method description of a request message.
*
* <p>Valid only for request messages. The returned
- * <code>IMethodDescription</code> is consistent with the type of the
+ * <code>MethodDescription</code> is consistent with the type of the
* message.</p>
*
* @return the (non-<code>null</code>) method description for a request,
* <code>null</code> for a reply.
*/
- public final IMethodDescription getMethod() {
+ public final MethodDescription getMethod() {
return method;
}
@@ -177,8 +177,8 @@ public class Message {
private final ThreadId threadId;
private final boolean request;
private final String objectId;
- private final ITypeDescription type;
- private final IMethodDescription method;
+ private final TypeDescription type;
+ private final MethodDescription method;
private final boolean synchronous;
private final XCurrentContext currentContext;
private final boolean abnormalTermination;