diff options
author | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
commit | 4cc5d77c383b6c91c3af9fe44df9687bb9b15580 (patch) | |
tree | 64ce3d6cf35b15497de50f298f7225a8c72f64b6 /java/test/Ice/inheritance/CCI.java | |
parent | Merge commit 'origin/R3_3_branch' (diff) | |
download | ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.bz2 ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.xz ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.zip |
Merged android-testsuite branch.
Diffstat (limited to 'java/test/Ice/inheritance/CCI.java')
-rw-r--r-- | java/test/Ice/inheritance/CCI.java | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/java/test/Ice/inheritance/CCI.java b/java/test/Ice/inheritance/CCI.java index 6845f844095..a09969228f6 100644 --- a/java/test/Ice/inheritance/CCI.java +++ b/java/test/Ice/inheritance/CCI.java @@ -7,27 +7,34 @@ // // ********************************************************************** -public final class CCI extends Test.MA.CC +package test.Ice.inheritance; + +import test.Ice.inheritance.Test.MA.CAPrx; +import test.Ice.inheritance.Test.MA.CC; +import test.Ice.inheritance.Test.MA.CCPrx; +import test.Ice.inheritance.Test.MB.CBPrx; + +public final class CCI extends CC { public CCI() { } - public Test.MA.CAPrx - caop(Test.MA.CAPrx p, Ice.Current current) + public CAPrx + caop(CAPrx p, Ice.Current current) { return p; } - public Test.MA.CCPrx - ccop(Test.MA.CCPrx p, Ice.Current current) + public CCPrx + ccop(CCPrx p, Ice.Current current) { return p; } - public Test.MB.CBPrx - cbop(Test.MB.CBPrx p, Ice.Current current) + public CBPrx + cbop(CBPrx p, Ice.Current current) { return p; } |