Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
javax.swing.InputMap

Uses of InputMap in javax.swing
 

Subclasses of InputMap in javax.swing
 class ComponentInputMap
          An InputMap that is associated with a particular JComponent.
 

Fields in javax.swing declared as InputMap
private  InputMap JComponent.inputMap_whenFocused
           
private  InputMap JComponent.inputMap_whenAncestorOfFocused
           
private  InputMap InputMap.parent
          parent
 

Methods in javax.swing that return InputMap
 InputMap JComponent.getInputMap(int condition)
           
 InputMap JComponent.getInputMap()
           
static InputMap SwingUtilities.getUIInputMap(JComponent component, int cond)
          Returns the InputMap that is provided by the ComponentUI of component for the specified condition.
static InputMap LookAndFeel.makeInputMap(java.lang.Object[] keys)
          Creates a InputMap from keys.
 InputMap InputMap.getParent()
          Returns the parent of this InputMap.
 

Methods in javax.swing with parameters of type InputMap
 void JComponent.setInputMap(int condition, InputMap map)
           
static void SwingUtilities.replaceUIInputMap(JComponent component, int condition, InputMap uiInputMap)
          Change the shared, UI-managed InputMap for a given component.
static void LookAndFeel.loadKeyBindings(InputMap retMap, java.lang.Object[] keys)
          Loads the bindings in keys into retMap.
 void InputMap.setParent(InputMap parentMap)
          Sets a parent for this InputMap.
 void ComponentInputMap.setParent(InputMap parentMap)
          Sets a parent for this ComponentInputMap.