summaryrefslogtreecommitdiff
path: root/java/test/Ice/inheritance/Test.ice
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/Test.ice
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/Test.ice')
-rw-r--r--java/test/Ice/inheritance/Test.ice58
1 files changed, 29 insertions, 29 deletions
diff --git a/java/test/Ice/inheritance/Test.ice b/java/test/Ice/inheritance/Test.ice
index bdb1e2ec96e..2e13e8eb27f 100644
--- a/java/test/Ice/inheritance/Test.ice
+++ b/java/test/Ice/inheritance/Test.ice
@@ -8,60 +8,60 @@
//
// **********************************************************************
-#ifndef TEST_ICE
-#define TEST_ICE
+#ifndef TESTICE
+#define TESTICE
-module M_A
+module MA
{
-interface I_A
+interface IA
{
- I_A* ia(I_A* p);
+ IA* iaop(IA* p);
};
-class C_A
+class CA
{
- C_A* ca(C_A* p);
+ CA* caop(CA* p);
};
};
-module M_B
+module MB
{
-interface I_B1 extends M_A::I_A
+interface IB1 extends MA::IA
{
- I_B1* ib1(I_B1* p);
+ IB1* ib1op(IB1* p);
};
-interface I_B2 extends M_A::I_A
+interface IB2 extends MA::IA
{
- I_B2* ib2(I_B2* p);
+ IB2* ib2op(IB2* p);
};
-class C_B extends M_A::C_A
+class CB extends MA::CA
{
- C_B* cb(C_B* p);
+ CB* cbop(CB* p);
};
};
-module M_A
+module MA
{
-interface I_C extends M_B::I_B1, M_B::I_B2
+interface IC extends MB::IB1, MB::IB2
{
- I_C* ic(I_C* p);
+ IC* icop(IC* p);
};
-class C_C extends M_B::C_B
+class CC extends MB::CB
{
- C_C* cc(C_C* p);
+ CC* ccop(CC* p);
};
-class C_D extends C_C implements M_B::I_B1, M_B::I_B2
+class CD extends CC implements MB::IB1, MB::IB2
{
- C_D* cd(C_D* p);
+ CD* cdop(CD* p);
};
};
@@ -69,14 +69,14 @@ class C_D extends C_C implements M_B::I_B1, M_B::I_B2
interface Initial
{
void shutdown();
- M_A::C_A* c_a();
- M_B::C_B* c_b();
- M_A::C_C* c_c();
- M_A::C_D* c_d();
- M_A::I_A* i_a();
- M_B::I_B1* i_b1();
- M_B::I_B2* i_b2();
- M_A::I_C* i_c();
+ MA::CA* caop();
+ MB::CB* cbop();
+ MA::CC* ccop();
+ MA::CD* cdop();
+ MA::IA* iaop();
+ MB::IB1* ib1op();
+ MB::IB2* ib2op();
+ MA::IC* icop();
};
#endif