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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
// **********************************************************************
//
// Copyright (c) 2003-2014 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.custom;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import test.Ice.custom.Test.BoolSeqHolder;
import test.Ice.custom.Test.ByteSeqHolder;
import test.Ice.custom.Test.C;
import test.Ice.custom.Test.CArrayHolder;
import test.Ice.custom.Test.CListHolder;
import test.Ice.custom.Test.CSeqHolder;
import test.Ice.custom.Test.DSeqHolder;
import test.Ice.custom.Test.DoubleSeqHolder;
import test.Ice.custom.Test.E;
import test.Ice.custom.Test.ESeqHolder;
import test.Ice.custom.Test.FloatSeqHolder;
import test.Ice.custom.Test.IntSeqHolder;
import test.Ice.custom.Test.LongSeqHolder;
import test.Ice.custom.Test.S;
import test.Ice.custom.Test.SSeqHolder;
import test.Ice.custom.Test.ShortSeqHolder;
import test.Ice.custom.Test.StringSeqHolder;
import test.Ice.custom.Test.StringSeqSeqHolder;
import test.Ice.custom.Test.TestIntf;
public final class TestI extends TestIntf
{
public
TestI(Ice.Communicator communicator)
{
_communicator = communicator;
}
public List<C>
opCArray(List<C> inSeq, CArrayHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<C>
opCList(List<C> inSeq, CListHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public C[]
opCSeq(C[] inSeq, CSeqHolder outSeq, Ice.Current current)
{
seq = new ArrayList<C>(Arrays.asList(inSeq));
outSeq.value = new C[seq.size()];
seq.toArray(outSeq.value);
return outSeq.value;
}
public List<Boolean>
opBoolSeq(List<Boolean> inSeq, BoolSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Byte>
opByteSeq(List<Byte> inSeq, ByteSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Map<Integer,String>>
opDSeq(List<Map<Integer,String>> inSeq, DSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Double>
opDoubleSeq(List<Double> inSeq, DoubleSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<E>
opESeq(List<E> inSeq, ESeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Float>
opFloatSeq(List<Float> inSeq, FloatSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Integer>
opIntSeq(List<Integer> inSeq, IntSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Long>
opLongSeq(List<Long> inSeq, LongSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<S>
opSSeq(List<S> inSeq, SSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Short>
opShortSeq(List<Short> inSeq, ShortSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<String>
opStringSeq(List<String> inSeq, StringSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<List<String>>
opStringSeqSeq(List<List<String>> inSeq, StringSeqSeqHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public void
shutdown(Ice.Current current)
{
_communicator.shutdown();
}
private Ice.Communicator _communicator;
}
|