summaryrefslogtreecommitdiff
path: root/java/test/Ice/custom/TestI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Ice/custom/TestI.java')
-rw-r--r--java/test/Ice/custom/TestI.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/java/test/Ice/custom/TestI.java b/java/test/Ice/custom/TestI.java
index c3f3d47e85f..5392561c044 100644
--- a/java/test/Ice/custom/TestI.java
+++ b/java/test/Ice/custom/TestI.java
@@ -42,6 +42,7 @@ public final class TestI extends TestIntf
_communicator = communicator;
}
+ @Override
public List<C>
opCArray(List<C> inSeq, CArrayHolder outSeq, Ice.Current current)
{
@@ -49,6 +50,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<C>
opCList(List<C> inSeq, CListHolder outSeq, Ice.Current current)
{
@@ -56,6 +58,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public C[]
opCSeq(C[] inSeq, CSeqHolder outSeq, Ice.Current current)
{
@@ -65,6 +68,7 @@ public final class TestI extends TestIntf
return outSeq.value;
}
+ @Override
public List<Boolean>
opBoolSeq(List<Boolean> inSeq, BoolSeqHolder outSeq, Ice.Current current)
{
@@ -72,6 +76,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<Byte>
opByteSeq(List<Byte> inSeq, ByteSeqHolder outSeq, Ice.Current current)
{
@@ -79,6 +84,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<Map<Integer,String>>
opDSeq(List<Map<Integer,String>> inSeq, DSeqHolder outSeq, Ice.Current current)
{
@@ -86,6 +92,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<Double>
opDoubleSeq(List<Double> inSeq, DoubleSeqHolder outSeq, Ice.Current current)
{
@@ -93,6 +100,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<E>
opESeq(List<E> inSeq, ESeqHolder outSeq, Ice.Current current)
{
@@ -100,6 +108,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<Float>
opFloatSeq(List<Float> inSeq, FloatSeqHolder outSeq, Ice.Current current)
{
@@ -107,6 +116,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<Integer>
opIntSeq(List<Integer> inSeq, IntSeqHolder outSeq, Ice.Current current)
{
@@ -114,6 +124,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<Long>
opLongSeq(List<Long> inSeq, LongSeqHolder outSeq, Ice.Current current)
{
@@ -121,6 +132,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<S>
opSSeq(List<S> inSeq, SSeqHolder outSeq, Ice.Current current)
{
@@ -128,6 +140,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<Short>
opShortSeq(List<Short> inSeq, ShortSeqHolder outSeq, Ice.Current current)
{
@@ -135,6 +148,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<String>
opStringSeq(List<String> inSeq, StringSeqHolder outSeq, Ice.Current current)
{
@@ -142,6 +156,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public List<List<String>>
opStringSeqSeq(List<List<String>> inSeq, StringSeqSeqHolder outSeq, Ice.Current current)
{
@@ -149,6 +164,7 @@ public final class TestI extends TestIntf
return inSeq;
}
+ @Override
public void
shutdown(Ice.Current current)
{