De Selector generiek gemaakt en een instantie ApplicationSelector toegevoegd. Hierbij komen twee problemen kijken:...

This commit is contained in:
Bram Veenboer
2011-05-14 19:48:37 +00:00
parent e1188b43cc
commit ccfa301750
32 changed files with 256 additions and 164 deletions

View File

@@ -5,6 +5,8 @@ import pm.exception.device.DeviceInitialiseException;
import pm.exception.event.spreader.NetworkSpreaderException;
public class Client extends Manager {
public static final String TITLE = "Client";
public static final String IP = "192.168.1.100";
public static final int PORT = 6789;
@@ -31,4 +33,8 @@ public class Client extends Manager {
e.printStackTrace();
}
}
public String title() {
return TITLE;
}
}