Thread aangemaakt voor het updaten van features en pollen van events. Misschien moet het hele Device een Thread worden?

This commit is contained in:
Bram Veenboer
2011-02-05 22:10:39 +00:00
parent 792c430ad0
commit 9048c76afe
4 changed files with 49 additions and 31 deletions

View File

@@ -3,12 +3,15 @@ package pm.application.voorbeeld;
import pm.application.Application;
public class VoorbeeldApplication extends Application {
public void start() throws Exception {
System.out.println("jeheee!");
//throw new Exception("GEK");
public void start() {
System.out.println("start");
}
public void stop() {
System.out.println("stop");
}
public void test() {
System.out.println("neheee!");
System.out.println("test");
}
}