summaryrefslogtreecommitdiff
path: root/java/test/Ice/inheritance/IB1I.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/IB1I.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/IB1I.java')
-rw-r--r--java/test/Ice/inheritance/IB1I.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/java/test/Ice/inheritance/IB1I.java b/java/test/Ice/inheritance/IB1I.java
new file mode 100644
index 00000000000..899a2e21db6
--- /dev/null
+++ b/java/test/Ice/inheritance/IB1I.java
@@ -0,0 +1,29 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// Mutable Realms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+public final class IB1I extends MB._IB1Disp
+{
+ public
+ IB1I()
+ {
+ }
+
+ public MA.IAPrx
+ iaop(MA.IAPrx p, Ice.Current current)
+ {
+ return p;
+ }
+
+ public MB.IB1Prx
+ ib1op(MB.IB1Prx p, Ice.Current current)
+ {
+ return p;
+ }
+}