summaryrefslogtreecommitdiff
path: root/java/test/Ice/inheritance/CCI.java
blob: 390e4d803f2ba94fd756d80cc4e73e77e23b27ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// **********************************************************************
//
// Copyright (c) 2003-2011 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.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 CAPrx
    caop(CAPrx p, Ice.Current current)
    {
        return p;
    }

    public CCPrx
    ccop(CCPrx p, Ice.Current current)
    {
        return p;
    }

    public CBPrx
    cbop(CBPrx p, Ice.Current current)
    {
        return p;
    }
}