Adjusting and cleaning up ZigbeeTest to install Vigilia ZigBee gateway and devices.
[iot2.git] / iotjava / iotrmi / Java / sample / TestClass.java
index 1c95b3a6ac3f9f8bc671253d3f9da45449a4e8d5..6d547ba518dea23b29193f274826312810057410 100644 (file)
@@ -139,19 +139,47 @@ public class TestClass implements TestClassInterface {
                    }
                }
            };
-               thread2.start();*/
+               thread2.start();
 
-               //return 1;
+               return 1;*/
                return sum;
        }
 
+       public StructJ[] handleStruct(StructJ[] data) {
+
+               for (StructJ str : data) {
+                       System.out.println("Name: " + str.name);
+                       System.out.println("Value: " + str.value);
+                       System.out.println("Year: " + str.year);
+               }
+
+               StructJ test = new StructJ();
+               test.name = "Anonymous";
+               test.value = 1.33f;
+               test.year = 2016;
+
+               data[0] = test;
+
+               return data;
+       }
+
+
+       public EnumJ[] handleEnum(EnumJ[] en) {
+
+               for (EnumJ e : en) {
+                       System.out.println("Enum: " + e);
+               }
+               
+               return en;
+       }
+
 
        public static void main(String[] args) {
 
-               TestClass tc = new TestClass();
-               CallBack cb = new CallBack(3);
+               //TestClass tc = new TestClass();
+               //CallBack cb = new CallBack(3);
 
-               tc.registerCallback(cb);
-               System.out.println("Return value: " + tc.callBack());
+               //tc.registerCallback(cb);
+               //System.out.println("Return value: " + tc.callBack());
        }
 }