blob: 8743d4b08a6ed42dd97e4eaaa3c5dacb62c7ddc9 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
// **********************************************************************
//
// Copyright (c) 2003-2010 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._InitialDisp;
import test.Ice.inheritance.Test.MA.CAPrx;
import test.Ice.inheritance.Test.MA.CAPrxHelper;
import test.Ice.inheritance.Test.MA.CCPrx;
import test.Ice.inheritance.Test.MA.CCPrxHelper;
import test.Ice.inheritance.Test.MA.CDPrx;
import test.Ice.inheritance.Test.MA.CDPrxHelper;
import test.Ice.inheritance.Test.MA.IAPrx;
import test.Ice.inheritance.Test.MA.IAPrxHelper;
import test.Ice.inheritance.Test.MA.ICPrx;
import test.Ice.inheritance.Test.MA.ICPrxHelper;
import test.Ice.inheritance.Test.MB.CBPrx;
import test.Ice.inheritance.Test.MB.CBPrxHelper;
import test.Ice.inheritance.Test.MB.IB1Prx;
import test.Ice.inheritance.Test.MB.IB1PrxHelper;
import test.Ice.inheritance.Test.MB.IB2Prx;
import test.Ice.inheritance.Test.MB.IB2PrxHelper;
public final class InitialI extends _InitialDisp
{
public
InitialI(Ice.ObjectAdapter adapter)
{
_ca = CAPrxHelper.uncheckedCast(adapter.addWithUUID(new CAI()));
_cb = CBPrxHelper.uncheckedCast(adapter.addWithUUID(new CBI()));
_cc = CCPrxHelper.uncheckedCast(adapter.addWithUUID(new CCI()));
_cd = CDPrxHelper.uncheckedCast(adapter.addWithUUID(new CDI()));
_ia = IAPrxHelper.uncheckedCast(adapter.addWithUUID(new IAI()));
_ib1 = IB1PrxHelper.uncheckedCast(adapter.addWithUUID(new IB1I()));
_ib2 = IB2PrxHelper.uncheckedCast(adapter.addWithUUID(new IB2I()));
_ic = ICPrxHelper.uncheckedCast(adapter.addWithUUID(new ICI()));
}
public CAPrx
caop(Ice.Current current)
{
return _ca;
}
public CBPrx
cbop(Ice.Current current)
{
return _cb;
}
public CCPrx
ccop(Ice.Current current)
{
return _cc;
}
public CDPrx
cdop(Ice.Current current)
{
return _cd;
}
public IAPrx
iaop(Ice.Current current)
{
return _ia;
}
public IB1Prx
ib1op(Ice.Current current)
{
return _ib1;
}
public IB2Prx
ib2op(Ice.Current current)
{
return _ib2;
}
public ICPrx
icop(Ice.Current current)
{
return _ic;
}
public void
shutdown(Ice.Current current)
{
current.adapter.getCommunicator().shutdown();
}
private CAPrx _ca;
private CBPrx _cb;
private CCPrx _cc;
private CDPrx _cd;
private IAPrx _ia;
private IB1Prx _ib1;
private IB2Prx _ib2;
private ICPrx _ic;
}
|