diff options
Diffstat (limited to 'java/test/Ice/proxy/MyDerivedClassI.java')
-rw-r--r-- | java/test/Ice/proxy/MyDerivedClassI.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/test/Ice/proxy/MyDerivedClassI.java b/java/test/Ice/proxy/MyDerivedClassI.java index 3cf8c55207b..35cc76794c0 100644 --- a/java/test/Ice/proxy/MyDerivedClassI.java +++ b/java/test/Ice/proxy/MyDerivedClassI.java @@ -17,24 +17,28 @@ public final class MyDerivedClassI extends MyDerivedClass { } + @Override public Ice.ObjectPrx echo(Ice.ObjectPrx obj, Ice.Current c) { return obj; } + @Override public void shutdown(Ice.Current c) { c.adapter.getCommunicator().shutdown(); } + @Override public java.util.Map<String, String> getContext(Ice.Current current) { return _ctx; } + @Override public boolean ice_isA(String s, Ice.Current current) { |