Class SemicolonRequiredInReferenceCodeAction

java.lang.Object
org.eclipse.lemminx.extensions.contentmodel.participants.codeactions.SemicolonRequiredInReferenceCodeAction
All Implemented Interfaces:
ICodeActionParticipant

public class SemicolonRequiredInReferenceCodeAction extends Object implements ICodeActionParticipant
Code action to fix SemicolonRequiredInReference error. Given this XML: &mdash -> Error: The reference to entity "mdash" must end with the ';' delimiter To fix the error, the code action will suggest adding ';'
  • Constructor Details

    • SemicolonRequiredInReferenceCodeAction

      public SemicolonRequiredInReferenceCodeAction()
  • Method Details

    • doCodeAction

      public void doCodeAction(ICodeActionRequest request, List<org.eclipse.lsp4j.CodeAction> codeActions, org.eclipse.lsp4j.jsonrpc.CancelChecker cancelChecker)
      Description copied from interface: ICodeActionParticipant
      Collect the code action in the given codeActions for the given code action request request.
      Specified by:
      doCodeAction in interface ICodeActionParticipant
      Parameters:
      request - the code action request.
      codeActions - list of code actions to fill.
      cancelChecker - the cancel checker.