1. /*
  2. * @(#)KeyboardFocusManagerPeer.java 1.3 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.awt.peer;
  8. import java.awt.Component;
  9. import java.awt.Window;
  10. public interface KeyboardFocusManagerPeer {
  11. void setCurrentFocusedWindow(Window win);
  12. Window getCurrentFocusedWindow();
  13. void setCurrentFocusOwner(Component comp);
  14. Component getCurrentFocusOwner();
  15. void clearGlobalFocusOwner(Window activeWindow);
  16. }