< prev index next >

src/java.desktop/windows/classes/sun/awt/windows/WKeyboardFocusManagerPeer.java

Print this page

        

@@ -30,11 +30,11 @@
 import java.awt.peer.ComponentPeer;
 
 import sun.awt.AWTAccessor;
 import sun.awt.AWTAccessor.ComponentAccessor;
 import sun.awt.KeyboardFocusManagerPeerImpl;
-import sun.awt.CausedFocusEvent;
+import java.awt.event.FocusEvent.Cause;
 
 final class WKeyboardFocusManagerPeer extends KeyboardFocusManagerPeerImpl {
     static native void setNativeFocusOwner(ComponentPeer peer);
     static native Component getNativeFocusOwner();
     static native Window getNativeFocusedWindow();

@@ -73,11 +73,11 @@
     public static boolean deliverFocus(Component lightweightChild,
                                        Component target,
                                        boolean temporary,
                                        boolean focusedWindowChangeAllowed,
                                        long time,
-                                       CausedFocusEvent.Cause cause)
+                                       Cause cause)
     {
         // TODO: do something to eliminate this forwarding
         return KeyboardFocusManagerPeerImpl.deliverFocus(lightweightChild,
                                                          target,
                                                          temporary,
< prev index next >