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 tfc) {14 thinlet.requestFocus(tfc);15 }16 17 /**18 *19 */20 public void focusGained(Thinlet thinlet, Object tfd) {21 thinlet.requestFocus(tfd);22 }23 }