Package fr.istic.aco.editor.commands


package fr.istic.aco.editor.commands
  • Class
    Description
    Represents a generic command in the text editor application.
    The CopyTextCommand class implements the functionality for copying the currently selected text into the clipboard.
    The CutSelectedCommand class implements the functionality for cutting the currently selected text into the clipboard.
    The DeleteTextCommand class implements the functionality for deleting the currently selected text.
    The InsertTextCommand class implements the functionality for inserting a string in the buffer, which replaces the contents of the selection
    The MoveSelection class implements the functionality for selecting the text within the interval
    The PasteTextCommand class implements the functionality for replacing the currently selected text with the contents of the clipboard.
    The RedoCommand class implements the functionality for redoing the last undone action in the text editor.
    The ReplayCommand class implements the functionality for replaying a sequence of previously recorded commands.
    The StartCommand class implements the functionality for starting the recording of commands.
    The StopCommand class implements the functionality for stopping the recording of commands.
    The RedoCommand class implements the functionality for undoing the last performed action in the text editor.