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
|
// **********************************************************************
//
// Copyright (c) 2003-2009 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.
//
// **********************************************************************
import Test.*;
import java.util.*;
public final class TestI extends TestIntf
{
public
TestI(Ice.Communicator communicator)
{
_communicator = communicator;
}
public List<Test.C>
opCArray(List<Test.C> inSeq, CArrayHolder outSeq, Ice.Current current)
{
outSeq.value = inSeq;
return inSeq;
}
public List<Test.C>
opCList(List<Test.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<Test.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<Test.E>
opESeq(List<Test.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<Test.S>
opSSeq(List<Test.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;
}
|