Uses of Class
javax.swing.InputMap
Package | Description |
---|---|
javax.swing |
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
|
javax.swing.plaf |
Provides one interface and many abstract classes that Swing uses to provide
its pluggable look-and-feel capabilities.
|
-
Uses of InputMap in javax.swing
Subclasses of InputMap in javax.swing Modifier and Type Class Description class
ComponentInputMap
AComponentInputMap
is anInputMap
associated with a particularJComponent
.Methods in javax.swing that return InputMap Modifier and Type Method Description InputMap
JComponent. getInputMap()
Returns theInputMap
that is used when the component has focus.InputMap
JComponent. getInputMap(int condition)
Returns theInputMap
that is used duringcondition
.InputMap
InputMap. getParent()
Gets thisInputMap
's parent.static InputMap
SwingUtilities. getUIInputMap(JComponent component, int condition)
Returns the InputMap provided by the UI for conditioncondition
in componentcomponent
.static InputMap
LookAndFeel. makeInputMap(Object[] keys)
Creates anInputMapUIResource
fromkeys
.Methods in javax.swing with parameters of type InputMap Modifier and Type Method Description static void
LookAndFeel. loadKeyBindings(InputMap retMap, Object[] keys)
Populates anInputMap
with the specified bindings.static void
SwingUtilities. replaceUIInputMap(JComponent component, int type, InputMap uiInputMap)
Convenience method to change the UI InputMap forcomponent
touiInputMap
.void
JComponent. setInputMap(int condition, InputMap map)
Sets theInputMap
to use under the conditioncondition
tomap
.void
ComponentInputMap. setParent(InputMap map)
Sets the parent, which must be aComponentInputMap
associated with the same component as thisComponentInputMap
.void
InputMap. setParent(InputMap map)
Sets thisInputMap
's parent. -
Uses of InputMap in javax.swing.plaf
Subclasses of InputMap in javax.swing.plaf Modifier and Type Class Description class
ComponentInputMapUIResource
A subclass of javax.swing.ComponentInputMap that implements UIResource.class
InputMapUIResource
A subclass of javax.swing.InputMap that implements UIResource.