Class ConvertLineDelimitersAction

All Implemented Interfaces:
IAction, IUpdate

@Deprecated public class ConvertLineDelimitersAction extends TextEditorAction
Deprecated.
since 3.1. Line delimiter conversion has been modified to work on groups of files rather than being editor specific
An action to convert line delimiters of a text editor document to a particular line delimiter.
Since:
2.0
  • Constructor Details

    • ConvertLineDelimitersAction

      public ConvertLineDelimitersAction(ITextEditor editor, String lineDelimiter)
      Deprecated.
      Creates a line delimiter conversion action.
      Parameters:
      editor - the editor
      lineDelimiter - the target line delimiter to convert the editor's document to
    • ConvertLineDelimitersAction

      public ConvertLineDelimitersAction(ResourceBundle bundle, String prefix, ITextEditor editor, String lineDelimiter)
      Deprecated.
      Creates a line delimiter conversion action.
      Parameters:
      bundle - the resource bundle
      prefix - the prefix for the resource bundle lookup
      editor - the editor
      lineDelimiter - the target line delimiter to convert the editor's document to
  • Method Details

    • run

      public void run()
      Deprecated.
      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:
    • update

      public void update()
      Deprecated.
      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