Class DeleteLineAction

  • All Implemented Interfaces:
    IAction, IUpdate

    public class DeleteLineAction
    extends TextEditorAction
    An action to delete a whole line, the fraction of the line that is left from the cursor or the fraction that is right from the cursor.
    Since:
    2.0
    • Constructor Detail

      • DeleteLineAction

        public DeleteLineAction​(ResourceBundle bundle,
                                String prefix,
                                ITextEditor editor,
                                int type)
        Creates a line deletion action.
        Parameters:
        bundle - the resource bundle for UI strings
        prefix - the prefix for the property keys into bundle
        editor - the editor
        type - the line deletion type, must be one of WHOLE_LINE, TO_BEGINNING or TO_END
      • DeleteLineAction

        public DeleteLineAction​(ResourceBundle bundle,
                                String prefix,
                                ITextEditor editor,
                                int type,
                                boolean copyToClipboard)
        Creates a line deletion action.
        Parameters:
        bundle - the resource bundle for UI strings
        prefix - the prefix for the property keys into bundle
        editor - the editor
        type - the line deletion type, must be one of WHOLE_LINE, TO_BEGINNING or TO_END
        copyToClipboard - if true, the contents of the deleted line are copied to the clipboard
        Since:
        2.1
      • DeleteLineAction

        public DeleteLineAction​(ITextEditor editor,
                                int type,
                                boolean copyToClipboard)
        Creates a line deletion action.
        Parameters:
        editor - the editor
        type - the line deletion type, must be one of WHOLE_LINE, TO_BEGINNING or TO_END
        copyToClipboard - if true, the contents of the deleted line are copied to the clipboard
        Since:
        3.5
    • Method Detail

      • run

        public void run()
        Description copied from class: Action
        The default implementation of this IAction method does nothing. Subclasses should override this method if they do not need information from the triggering event, or override runWithEvent(Event) if they do.
        Specified by:
        run in interface IAction
        Overrides:
        run in class Action
        See Also:
        How radio buttons are handled, How check boxes are handled
      • update

        public void update()
        Description copied from class: TextEditorAction
        Always enables this action if it is connected to a text editor. If the associated editor is null, the action is disabled. Subclasses may override.
        Specified by:
        update in interface IUpdate
        Overrides:
        update in class TextEditorAction