(int timeMillis, boolean repeat, Form parent, Runnable r)
| 69 | /// |
| 70 | /// the timer instance |
| 71 | public static UITimer timer(int timeMillis, boolean repeat, Form parent, Runnable r) { |
| 72 | UITimer uit = new UITimer(r); |
| 73 | uit.schedule(timeMillis, repeat, parent); |
| 74 | return uit; |
| 75 | } |
| 76 | |
| 77 | /// Convenience method to schedule a UITimer more easily on the current form |
| 78 | /// |