Package org.apache.jorphan.gui.ui
Class TextComponentUI
-
- All Implemented Interfaces:
@API(since = "5.3", status = API.Status.INTERNAL) public class TextComponentUIConfigures undo manager for a text component.
-
-
Field Summary
Fields Modifier and Type Field Description public final static TextComponentUIINSTANCE
-
Constructor Summary
Constructors Constructor Description TextComponentUI()
-
Method Summary
Modifier and Type Method Description voidresetUndoHistory()Causes all undo managers to invalidate their history. voidinstallUndo(JTextComponent component)Installs an undo manager and keyboard shortcuts to a text component static voiduninstallUndo(JTextComponent component)Removes the default undo manager. -
-
Method Detail
-
resetUndoHistory
@API(since = "5.3", status = API.Status.INTERNAL) void resetUndoHistory()
Causes all undo managers to invalidate their history.
-
installUndo
@API(since = "5.3", status = API.Status.INTERNAL) void installUndo(JTextComponent component)
Installs an undo manager and keyboard shortcuts to a text component
- Parameters:
component- JTextField or JTextArea
-
uninstallUndo
@API(since = "5.5", status = API.Status.INTERNAL) static void uninstallUndo(JTextComponent component)
Removes the default undo manager. By default, JMeter installs undo manager to all text fields via
Swing -> createUI, however, undo is not always needed (e.g. log panel), so here's an API to remove it.- Parameters:
component- JTextField or JTextArea
-
-
-
-