diff options
Diffstat (limited to 'java/test/Ice/inheritance/CBI.java')
-rw-r--r-- | java/test/Ice/inheritance/CBI.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/java/test/Ice/inheritance/CBI.java b/java/test/Ice/inheritance/CBI.java new file mode 100644 index 00000000000..ed6cba55c13 --- /dev/null +++ b/java/test/Ice/inheritance/CBI.java @@ -0,0 +1,29 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// Mutable Realms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +public final class CBI extends MB.CB +{ + public + CBI() + { + } + + public MA.CAPrx + caop(MA.CAPrx p, Ice.Current current) + { + return p; + } + + public MB.CBPrx + cbop(MB.CBPrx p, Ice.Current current) + { + return p; + } +} |