jdk/src/java.desktop/macosx/classes/com/apple/laf/AquaKeyBindings.java
changeset 32865 f9cb6e427f9e
parent 28986 79f293b29d6a
child 44351 6bb1d97d5758
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
   527         actionMap.put(pageDownMultiline, pageDownMultilineAction);
   527         actionMap.put(pageDownMultiline, pageDownMultilineAction);
   528     }
   528     }
   529 
   529 
   530     // extracted and adapted from DefaultEditorKit in 1.6
   530     // extracted and adapted from DefaultEditorKit in 1.6
   531     @SuppressWarnings("serial") // Superclass is not serializable across versions
   531     @SuppressWarnings("serial") // Superclass is not serializable across versions
   532     static abstract class DeleteWordAction extends TextAction {
   532     abstract static class DeleteWordAction extends TextAction {
   533         public DeleteWordAction(final String name) { super(name); }
   533         public DeleteWordAction(final String name) { super(name); }
   534 
   534 
   535         public void actionPerformed(final ActionEvent e) {
   535         public void actionPerformed(final ActionEvent e) {
   536             if (e == null) return;
   536             if (e == null) return;
   537 
   537