コード例 #1
0
ファイル: EditorKit.java プロジェクト: niknah/SikuliX-2014
 // <editor-fold defaultstate="collapsed" desc="general support functions">
 @Override
 public Action[] getActions() {
   return TextAction.augmentList(super.getActions(), defaultActions);
 }
コード例 #2
0
ファイル: Notepad.java プロジェクト: ArcherSys/ArcherSysRuby
 /**
  * Fetch the list of actions supported by this editor. It is implemented to return the list of
  * actions supported by the embedded JTextComponent augmented with the actions defined locally.
  */
 public Action[] getActions() {
   return TextAction.augmentList(editor.getActions(), defaultActions);
 }