KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > thinlet > drafts > FocusTest


1 package thinlet.drafts;
2
3 import thinlet.*;
4
5 /**
6  *
7  */

8 public class FocusTest {
9     
10     /**
11      *
12      */

13     public void focusLost(Thinlet thinlet, Object JavaDoc tfc) {
14         thinlet.requestFocus(tfc);
15     }
16     
17     /**
18      *
19      */

20     public void focusGained(Thinlet thinlet, Object JavaDoc tfd) {
21         thinlet.requestFocus(tfd);
22     }
23 }
Popular Tags