summaryrefslogtreecommitdiff
path: root/java/test/Ice/inheritance/ICI.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-08-01 02:33:19 +0000
committerMichi Henning <michi@zeroc.com>2002-08-01 02:33:19 +0000
commit9b1190fe2c9e819f63ae8f29d0a4d11ba68683a6 (patch)
tree9025c1dcb3a505bf86336fa7f739bf137d427876 /java/test/Ice/inheritance/ICI.java
parentAttended to TODO items for stable_39. (diff)
downloadice-9b1190fe2c9e819f63ae8f29d0a4d11ba68683a6.tar.bz2
ice-9b1190fe2c9e819f63ae8f29d0a4d11ba68683a6.tar.xz
ice-9b1190fe2c9e819f63ae8f29d0a4d11ba68683a6.zip
Got rid of underscore warnings in inheritance tests.
Diffstat (limited to 'java/test/Ice/inheritance/ICI.java')
-rw-r--r--java/test/Ice/inheritance/ICI.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/java/test/Ice/inheritance/ICI.java b/java/test/Ice/inheritance/ICI.java
new file mode 100644
index 00000000000..96812379697
--- /dev/null
+++ b/java/test/Ice/inheritance/ICI.java
@@ -0,0 +1,41 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// Mutable Realms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+public final class ICI extends MA._ICDisp
+{
+ public
+ ICI()
+ {
+ }
+
+ public MA.IAPrx
+ iaop(MA.IAPrx p, Ice.Current current)
+ {
+ return p;
+ }
+
+ public MA.ICPrx
+ icop(MA.ICPrx p, Ice.Current current)
+ {
+ return p;
+ }
+
+ public MB.IB1Prx
+ ib1op(MB.IB1Prx p, Ice.Current current)
+ {
+ return p;
+ }
+
+ public MB.IB2Prx
+ ib2op(MB.IB2Prx p, Ice.Current current)
+ {
+ return p;
+ }
+}