diff options
Diffstat (limited to 'java-compat/test/src/main/java/test/Ice/inheritance/CAI.java')
-rw-r--r-- | java-compat/test/src/main/java/test/Ice/inheritance/CAI.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/java-compat/test/src/main/java/test/Ice/inheritance/CAI.java b/java-compat/test/src/main/java/test/Ice/inheritance/CAI.java new file mode 100644 index 00000000000..9c7fbcf2ca6 --- /dev/null +++ b/java-compat/test/src/main/java/test/Ice/inheritance/CAI.java @@ -0,0 +1,28 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +package test.Ice.inheritance; + +import test.Ice.inheritance.Test.MA.CA; +import test.Ice.inheritance.Test.MA.CAPrx; + +public final class CAI extends CA +{ + public + CAI() + { + } + + @Override + public CAPrx + caop(CAPrx p, Ice.Current current) + { + return p; + } +} |