(ActionEvent e)
| 267 | Timer t = new Timer(100, new ActionListener() { |
| 268 | |
| 269 | @Override |
| 270 | public void actionPerformed(ActionEvent e) { |
| 271 | String s = /** @j2sNative document.activeElement.id || */ |
| 272 | null; |
| 273 | |
| 274 | s += " " + (++n); |
| 275 | |
| 276 | // if(logging)System.out.println(s); |
| 277 | /** @j2sNative document.title = s; */ |
| 278 | } |
| 279 | |
| 280 | }); |
| 281 |
nothing calls this directly
no test coverage detected