Example usage for javax.swing.text TextAction subclass-usage

List of usage examples for javax.swing.text TextAction subclass-usage

Introduction

In this page you can find the example usage for javax.swing.text TextAction subclass-usage.

Usage

From source file Main.java

class UppercaseAction extends TextAction {
    public UppercaseAction() {
        super("uppercase-word-action");
    }

    public void actionPerformed(ActionEvent e) {

From source file KeymapExample.java

class UpWord extends TextAction {
    public UpWord() {
        super("uppercase-word-action");
    }

    public void actionPerformed(ActionEvent e) {

From source file Main.java

class UpWord extends TextAction {
    public UpWord() {
        super("uppercase-word-action");
    }

    public void actionPerformed(ActionEvent e) {