KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > awt > KeyboardFocusManager

java.awt
Class KeyboardFocusManager

java.lang.Object
  extended by java.awt.KeyboardFocusManager
All Implemented Interfaces:
KeyEventDispatcher, KeyEventPostProcessor
Direct Known Subclasses:
DefaultKeyboardFocusManager
See Also:
Top Examples, Source Code, Window, Frame, Dialog, FocusEvent, WindowEvent, KeyEvent

public void addKeyEventDispatcher(KeyEventDispatcher dispatcher)
See Also:
removeKeyEventDispatcher(java.awt.KeyEventDispatcher)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void addKeyEventPostProcessor(KeyEventPostProcessor processor)
See Also:
removeKeyEventPostProcessor(java.awt.KeyEventPostProcessor)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void addPropertyChangeListener(PropertyChangeListener listener)
See Also:
addPropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener), getPropertyChangeListeners(), removePropertyChangeListener(java.beans.PropertyChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void addPropertyChangeListener(String propertyName,
                                      PropertyChangeListener listener)
See Also:
getPropertyChangeListeners(java.lang.String), removePropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener), addPropertyChangeListener(java.beans.PropertyChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void addVetoableChangeListener(VetoableChangeListener listener)
See Also:
addVetoableChangeListener(java.lang.String,java.beans.VetoableChangeListener), getVetoableChangeListeners(), removeVetoableChangeListener(java.beans.VetoableChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void addVetoableChangeListener(String propertyName,
                                      VetoableChangeListener listener)
See Also:
getVetoableChangeListeners(), removeVetoableChangeListener(java.beans.VetoableChangeListener), addVetoableChangeListener(java.beans.VetoableChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int BACKWARD_TRAVERSAL_KEYS
See Also:
Component.getFocusTraversalKeys(int), Component.setFocusTraversalKeys(int, java.util.Set), getDefaultFocusTraversalKeys(int), setDefaultFocusTraversalKeys(int, java.util.Set)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void clearGlobalFocusOwner()
See Also:
FocusEvent.FOCUS_LOST, Component.requestFocus()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void dequeueKeyEvents(long after,
                                         Component untilFocused)
See Also:
discardKeyEvents(java.awt.Component), enqueueKeyEvents(long, java.awt.Component)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void discardKeyEvents(Component comp)
See Also:
dequeueKeyEvents(long, java.awt.Component), enqueueKeyEvents(long, java.awt.Component)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract boolean dispatchEvent(AWTEvent e)
See Also:
dispatchKeyEvent(java.awt.event.KeyEvent), redispatchEvent(java.awt.Component, java.awt.AWTEvent)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract boolean dispatchKeyEvent(KeyEvent e)
See Also:
dispatchEvent(java.awt.AWTEvent), KeyEventDispatcher
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void downFocusCycle()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void downFocusCycle(Container aContainer)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int DOWN_CYCLE_TRAVERSAL_KEYS
See Also:
Component.getFocusTraversalKeys(int), Component.setFocusTraversalKeys(int, java.util.Set), getDefaultFocusTraversalKeys(int), setDefaultFocusTraversalKeys(int, java.util.Set)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void enqueueKeyEvents(long after,
                                         Component untilFocused)
See Also:
discardKeyEvents(java.awt.Component), dequeueKeyEvents(long, java.awt.Component)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void firePropertyChange(String propertyName,
                                  Object oldValue,
                                  Object newValue)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void fireVetoableChange(String propertyName,
                                  Object oldValue,
                                  Object newValue)
                           throws PropertyVetoException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void focusNextComponent()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void focusNextComponent(Component aComponent)
See Also:
FocusTraversalPolicy
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void focusPreviousComponent()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void focusPreviousComponent(Component aComponent)
See Also:
FocusTraversalPolicy
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int FORWARD_TRAVERSAL_KEYS
See Also:
Component.getFocusTraversalKeys(int), Component.setFocusTraversalKeys(int, java.util.Set), getDefaultFocusTraversalKeys(int), setDefaultFocusTraversalKeys(int, java.util.Set)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Window getActiveWindow()
See Also:
setGlobalActiveWindow(java.awt.Window), getGlobalActiveWindow()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Container getCurrentFocusCycleRoot()
See Also:
setGlobalCurrentFocusCycleRoot(java.awt.Container), getGlobalCurrentFocusCycleRoot()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static KeyboardFocusManager getCurrentKeyboardFocusManager()
See Also:
setCurrentKeyboardFocusManager(java.awt.KeyboardFocusManager)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Set<AWTKeyStroke> getDefaultFocusTraversalKeys(int id)
See Also:
Component.getFocusTraversalKeys(int), Component.setFocusTraversalKeys(int, java.util.Set), setDefaultFocusTraversalKeys(int, java.util.Set), IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public FocusTraversalPolicy getDefaultFocusTraversalPolicy()
See Also:
Container.getFocusTraversalPolicy(), Container.setFocusTraversalPolicy(java.awt.FocusTraversalPolicy), setDefaultFocusTraversalPolicy(java.awt.FocusTraversalPolicy)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Window getFocusedWindow()
See Also:
setGlobalFocusedWindow(java.awt.Window), getGlobalFocusedWindow()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Component getFocusOwner()
See Also:
setGlobalFocusOwner(java.awt.Component), getGlobalFocusOwner()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Window getGlobalActiveWindow()
                                throws SecurityException
See Also:
setGlobalActiveWindow(java.awt.Window), getActiveWindow()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Container getGlobalCurrentFocusCycleRoot()
                                            throws SecurityException
See Also:
setGlobalCurrentFocusCycleRoot(java.awt.Container), getCurrentFocusCycleRoot()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Window getGlobalFocusedWindow()
                                 throws SecurityException
See Also:
setGlobalFocusedWindow(java.awt.Window), getFocusedWindow()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Component getGlobalFocusOwner()
                                 throws SecurityException
See Also:
setGlobalFocusOwner(java.awt.Component), getFocusOwner()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Component getGlobalPermanentFocusOwner()
                                          throws SecurityException
See Also:
setGlobalPermanentFocusOwner(java.awt.Component), getPermanentFocusOwner()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected List<KeyEventDispatcher> getKeyEventDispatchers()
See Also:
removeKeyEventDispatcher(java.awt.KeyEventDispatcher), addKeyEventDispatcher(java.awt.KeyEventDispatcher)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected List<KeyEventPostProcessor> getKeyEventPostProcessors()
See Also:
removeKeyEventPostProcessor(java.awt.KeyEventPostProcessor), addKeyEventPostProcessor(java.awt.KeyEventPostProcessor)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Component getPermanentFocusOwner()
See Also:
setGlobalPermanentFocusOwner(java.awt.Component), getGlobalPermanentFocusOwner()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public PropertyChangeListener[] getPropertyChangeListeners()
See Also:
getPropertyChangeListeners(java.lang.String), removePropertyChangeListener(java.beans.PropertyChangeListener), addPropertyChangeListener(java.beans.PropertyChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public PropertyChangeListener[] getPropertyChangeListeners(String propertyName)
See Also:
removePropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener), addPropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public VetoableChangeListener[] getVetoableChangeListeners()
See Also:
getVetoableChangeListeners(java.lang.String), removeVetoableChangeListener(java.beans.VetoableChangeListener), addVetoableChangeListener(java.beans.VetoableChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public VetoableChangeListener[] getVetoableChangeListeners(String propertyName)
See Also:
getVetoableChangeListeners(), removeVetoableChangeListener(java.lang.String,java.beans.VetoableChangeListener), addVetoableChangeListener(java.lang.String,java.beans.VetoableChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public KeyboardFocusManager()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract boolean postProcessKeyEvent(KeyEvent e)
See Also:
MenuShortcut, dispatchKeyEvent(java.awt.event.KeyEvent), KeyEventPostProcessor
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void processKeyEvent(Component focusedComponent,
                                     KeyEvent e)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void redispatchEvent(Component target,
                                  AWTEvent e)
See Also:
KeyEventDispatcher, dispatchEvent(java.awt.AWTEvent)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeKeyEventDispatcher(KeyEventDispatcher dispatcher)
See Also:
addKeyEventDispatcher(java.awt.KeyEventDispatcher)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeKeyEventPostProcessor(KeyEventPostProcessor processor)
See Also:
addKeyEventPostProcessor(java.awt.KeyEventPostProcessor)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removePropertyChangeListener(PropertyChangeListener listener)
See Also:
removePropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener), getPropertyChangeListeners(), addPropertyChangeListener(java.beans.PropertyChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removePropertyChangeListener(String propertyName,
                                         PropertyChangeListener listener)
See Also:
removePropertyChangeListener(java.beans.PropertyChangeListener), getPropertyChangeListeners(java.lang.String), addPropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeVetoableChangeListener(VetoableChangeListener listener)
See Also:
removeVetoableChangeListener(java.lang.String,java.beans.VetoableChangeListener), getVetoableChangeListeners(), addVetoableChangeListener(java.beans.VetoableChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeVetoableChangeListener(String propertyName,
                                         VetoableChangeListener listener)
See Also:
removeVetoableChangeListener(java.beans.VetoableChangeListener), getVetoableChangeListeners(), addVetoableChangeListener(java.beans.VetoableChangeListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static void setCurrentKeyboardFocusManager(KeyboardFocusManager newManager)
                                           throws SecurityException
See Also:
DefaultKeyboardFocusManager, getCurrentKeyboardFocusManager()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setDefaultFocusTraversalKeys(int id,
                                         Set<? extends AWTKeyStroke> keystrokes)
See Also:
Component.getFocusTraversalKeys(int), Component.setFocusTraversalKeys(int, java.util.Set), getDefaultFocusTraversalKeys(int), IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setDefaultFocusTraversalPolicy(FocusTraversalPolicy defaultPolicy)
See Also:
Container.getFocusTraversalPolicy(), Container.setFocusTraversalPolicy(java.awt.FocusTraversalPolicy), getDefaultFocusTraversalPolicy(), IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void setGlobalActiveWindow(Window activeWindow)
See Also:
Component.requestFocusInWindow(), Component.requestFocus(), getGlobalActiveWindow(), getActiveWindow()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setGlobalCurrentFocusCycleRoot(Container newFocusCycleRoot)
See Also:
getGlobalCurrentFocusCycleRoot(), getCurrentFocusCycleRoot()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void setGlobalFocusedWindow(Window focusedWindow)
See Also:
Window.isFocusableWindow(), Component.requestFocusInWindow(), Component.requestFocus(), getGlobalFocusedWindow(), getFocusedWindow()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void setGlobalFocusOwner(Component focusOwner)
See Also:
Component.isFocusable(), Component.requestFocusInWindow(), Component.requestFocus(), getGlobalFocusOwner(), getFocusOwner()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void setGlobalPermanentFocusOwner(Component permanentFocusOwner)
See Also:
Component.isFocusable(), Component.requestFocusInWindow(), Component.requestFocus(), getGlobalPermanentFocusOwner(), getPermanentFocusOwner()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void upFocusCycle()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void upFocusCycle(Component aComponent)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int UP_CYCLE_TRAVERSAL_KEYS
See Also:
Component.getFocusTraversalKeys(int), Component.setFocusTraversalKeys(int, java.util.Set), getDefaultFocusTraversalKeys(int), setDefaultFocusTraversalKeys(int, java.util.Set)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags