Java Utililty Methods Swing ActionMap

List of utility methods to do Swing ActionMap

Description

The list of methods to do Swing ActionMap are organized into topic(s).

Method

voidsysoutActionMap(JComponent com)
sysout Action Map
final ActionMap am = com.getActionMap();
Object[] keys = am.allKeys();
for (Object ks : keys) {
    System.out.println(ks.toString() + " : " + am.get(ks));