JTextArea: getActionMap() : JTextArea « javax.swing « Java by API






JTextArea: getActionMap()

 


import java.awt.Component;
import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JTextArea;

public class Main {
  public static void main(String[] argv) throws Exception {

    JTextArea component = new JTextArea();

    NextFocusAction nextFocusAction = new NextFocusAction();
    PrevFocusAction prevFocusAction = new PrevFocusAction();
    
    component.getActionMap().put(nextFocusAction.getValue(Action.NAME), nextFocusAction);
    component.getActionMap().put(prevFocusAction.getValue(Action.NAME), prevFocusAction);
  }
}

class NextFocusAction extends AbstractAction{
  public NextFocusAction(){
    super("Move Focus Forwards");
  }
  public void actionPerformed(ActionEvent evt) {
    ((Component) evt.getSource()).transferFocus();
  }
}
class PrevFocusAction extends AbstractAction {
  public PrevFocusAction(){
    super("Move Focus Backwards");
  }
  public void actionPerformed(ActionEvent evt) {
    ((Component) evt.getSource()).transferFocusBackward();
  }
}

   
  








Related examples in the same category

1.new JTextArea(Document document)
2.new JTextArea(String text)
3.new JTextArea(String text, int rows, int columns)
4.JTextArea: addCaretListener(CaretListener listener)
5.JTextArea: addUndoableEditListener(UndoableEditListener lis)
6.JTextArea: append(String str)
7.JTextArea: getActions()
8.JTextArea: getCaretPosition()
9.JTextArea: getDocument()
10.JTextArea: getFont()
11.JTextArea: getHighlighter()
12.JTextArea: getKeymap()
13.JTextArea: getLineCount()
14.JTextArea: getLineEndOffset(int line)
15.JTextArea.getLineOfOffset(int offset)
16.JTextArea: getLineStartOffset(int line)
17.JTextArea: insert(String str, int pos)
18.JTextArea: isManagingFocus()
19.JTextArea: paste()
20.JTextArea: read(Reader in, Object desc)
21.JTextArea: replaceRange(String str, int start, int end)
22.JTextArea: setCaretColor(Color c)
23.JTextField: setHorizontalAlignment(int pos)
24.JTextArea: setLineWrap(boolean wrap)
25.JTextArea: setTabSize(int size)
26.JTextArea: setWrapStyleWord(boolean word)
27.JTextArea: write(Writer out)