1 15 16 package swingwtx.swing; 17 18 public class FocusManager extends swingwt.awt.KeyboardFocusManager { 19 20 private static FocusManager currentManager = null; 21 22 public static FocusManager getCurrentManager() { 23 return currentManager; 24 } 25 26 public static void setCurrentManager(FocusManager manager) { 27 currentManager = manager; 28 } 29 30 34 public void focusNextComponent(swingwt.awt.Component component) { 35 } 36 37 41 public void focusPreviousComponent(swingwt.awt.Component component) { 42 } 43 44 } 45 | Popular Tags |