c85842d205bac945c03d5ac4b6d7cd9f22597613
[iot2.git] / iotjava / iotrmi / Java / basics / TestClass_Skeleton.java
1 import java.net.InetAddress;
2
3 public class TestClass_Skeleton {
4
5         public static void main(String[] args) throws Exception {
6
7                 int portsend = 5000;
8                 int portrecv = 6000;
9                 String callbackAddress = InetAddress.getLocalHost().getHostAddress();
10                 TestClass tc = new TestClass(3, 5f, "7911");
11                 TestClassInterface_Skeleton tcSkel = new TestClassInterface_Skeleton(tc, portsend, portrecv);
12         }
13 }