Adjustments in stubs and skeletons for callback in callback; using different ports...
[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 port = 5010;
8                 String callbackAddress = InetAddress.getLocalHost().getHostAddress();
9                 TestClass tc = new TestClass(3, 5f, "7911");
10                 TestClassInterface_Skeleton tcSkel = new TestClassInterface_Skeleton(tc, callbackAddress, port);
11
12         }
13 }