Changes and additional files for RMI profiling
[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                 //TestClassProfiling tc = new TestClassProfiling();
11                 TestClass tc = new TestClass();
12                 TestClassInterface_Skeleton tcSkel = new TestClassInterface_Skeleton(tc, portsend, portrecv);
13         }
14 }