Java javax.swing ActionMap fields, constructors, methods, implement or subclass

Example usage for Java javax.swing ActionMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing ActionMap.

The text is from its open source code.

Constructor

ActionMap()
Creates an ActionMap with no parent and no mappings.

Method

Object[]allKeys()
Returns an array of the keys defined in this ActionMap and its parent.
voidclear()
Removes all the mappings from this ActionMap.
Actionget(Object key)
Returns the binding for key, messaging the parent ActionMap if the binding is not locally defined.
ActionMapgetParent()
Returns this ActionMap's parent.
Object[]keys()
Returns the Action names that are bound in this ActionMap.
voidput(Object key, Action action)
Adds a binding for key to action.
voidremove(Object key)
Removes the binding for key from this ActionMap.
voidsetParent(ActionMap map)
Sets this ActionMap's parent.
intsize()
Returns the number of bindings in this ActionMap .