Testing for list/vector data types
[iot2.git] / iotjava / iotrmi / Java / basics / TestClass.java
index 4f55242262671680c94b66a16338884a9c240c31..6373238874d12ff8784608bd284c0e812cb2db18 100644 (file)
@@ -116,6 +116,49 @@ public class TestClass implements TestClassInterface {
        }
 
 
+       // Lists
+       public List<Byte> getByteList(List<Byte> in) {
+
+               return in;
+       }
+
+
+       public List<Short> getShortList(List<Short> in) {
+
+               return in;
+       }
+
+
+       public List<Long> getLongList(List<Long> in) {
+
+               return in;
+       }
+
+
+       public List<Float> getFloatList(List<Float> in) {
+
+               return in;
+       }
+
+
+       public List<Double> getDoubleList(List<Double> in) {
+
+               return in;
+       }
+
+
+       public List<Boolean> getBooleanList(List<Boolean> in) {
+
+               return in;
+       }
+
+
+       public List<Character> getCharList(List<Character> in) {
+
+               return in;
+       }
+
+
        // Other functions
        public int getA() {