List of usage examples for javax.swing.text TextAction augmentList
public static final Action[] augmentList(Action[] list1, Action[] list2)
From source file:org.docx4all.swing.text.WordMLEditorKit.java
/** * Fetches the command list for the editor. This is the list of commands * supported by the superclass augmented by the collection of commands * defined locally for style operations. * //from w ww . j a v a 2s.co m * @return the command list */ @Override public Action[] getActions() { return TextAction.augmentList(super.getActions(), WordMLEditorKit.defaultActions); }