diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-03 12:17:07 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-03 12:17:07 +0000 |
commit | ba840ecb4c4d78be3ca3cfb604c154a6d21b6325 (patch) | |
tree | a5e37c54c0d84d9f9111b2a0043e4563c50b09e4 /jurt | |
parent | 2069d69387041aab995315fc528fe59614082eb1 (diff) |
INTEGRATION: CWS sb10 (1.2.32); FILE MERGED
2003/11/04 14:04:55 sb 1.2.32.1: #112870# Fixed typos in UNOTYPEINFO.
Diffstat (limited to 'jurt')
-rw-r--r-- | jurt/test/com/sun/star/lib/uno/environments/remote/TestIWorkAt.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/jurt/test/com/sun/star/lib/uno/environments/remote/TestIWorkAt.java b/jurt/test/com/sun/star/lib/uno/environments/remote/TestIWorkAt.java index 95806d2a6ddd..e3cdb05fddc9 100644 --- a/jurt/test/com/sun/star/lib/uno/environments/remote/TestIWorkAt.java +++ b/jurt/test/com/sun/star/lib/uno/environments/remote/TestIWorkAt.java @@ -2,9 +2,9 @@ * * $RCSfile: TestIWorkAt.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2003-05-22 09:14:48 $ + * last change: $Author: hr $ $Date: 2004-02-03 13:17:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -64,9 +64,9 @@ package com.sun.star.lib.uno.environments.remote; import com.sun.star.lib.uno.typeinfo.MethodTypeInfo; import com.sun.star.lib.uno.typeinfo.TypeInfo; +import com.sun.star.uno.XInterface; - -public interface TestIWorkAt { +public interface TestIWorkAt extends XInterface { void syncCall() throws Throwable ; void asyncCall() throws Throwable ; @@ -76,8 +76,8 @@ public interface TestIWorkAt { public static final TypeInfo UNOTYPEINFO[] = { new MethodTypeInfo("increment", 0, 0), - new MethodTypeInfo("notifyme", 0, 0), - new MethodTypeInfo("syncCall", 0, 0), - new MethodTypeInfo("asyncCall", 0, 0) + new MethodTypeInfo("notifyme", 1, 0), + new MethodTypeInfo("syncCall", 2, 0), + new MethodTypeInfo("asyncCall", 3, 0) }; } |