Class UndoableJTextArea

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, Scrollable

public class UndoableJTextArea extends JTextArea
This class extends JTextArea with an undo function.
See Also:
  • Constructor Details

    • UndoableJTextArea

      public UndoableJTextArea()
      Constructs a new TextArea.
    • UndoableJTextArea

      public UndoableJTextArea(int rows, int columns)
      Constructs a new empty TextArea with the specified number of rows and columns.
      Parameters:
      rows -
      columns -
    • UndoableJTextArea

      public UndoableJTextArea(String text)
      Constructs a new TextArea with the specified text displayed.
      Parameters:
      text -
    • UndoableJTextArea

      public UndoableJTextArea(String text, int rows, int columns)
      Constructs a new TextArea with the specified text displayed.
      Parameters:
      text -
      rows -
      columns -
  • Method Details