blob: d75c94f3562a011f7ce0164ca06cf9c8f4ee1373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
package test.Ice.inheritance;
import test.Ice.inheritance.Test.MA.IAPrx;
import test.Ice.inheritance.Test.MA._IADisp;
public final class IAI extends _IADisp
{
public
IAI()
{
}
@Override
public IAPrx
iaop(IAPrx p, Ice.Current current)
{
return p;
}
}
|