Class MinifyCodeActionParticipant
- java.lang.Object
-
- org.eclipse.lemminx.extensions.minify.participants.MinifyCodeActionParticipant
-
- All Implemented Interfaces:
ICodeActionParticipant
public class MinifyCodeActionParticipant extends Object implements ICodeActionParticipant
Code action participant to provide minify as a source action.
-
-
Constructor Summary
Constructors Constructor Description MinifyCodeActionParticipant()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoCodeActionUnconditional(ICodeActionRequest request, List<org.eclipse.lsp4j.CodeAction> codeActions, org.eclipse.lsp4j.jsonrpc.CancelChecker cancelChecker)Collect the code action in the givencodeActionsfor the given code action requestrequestindependently of diagnostic provided.ICodeActionResolvesParticipantgetResolveCodeActionParticipant(String participantId)Returns the codeAction resolver participant identified by the givenparticipantIdand null otherwise.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.lemminx.services.extensions.codeaction.ICodeActionParticipant
doCodeAction
-
-
-
-
Method Detail
-
doCodeActionUnconditional
public void doCodeActionUnconditional(ICodeActionRequest request, List<org.eclipse.lsp4j.CodeAction> codeActions, org.eclipse.lsp4j.jsonrpc.CancelChecker cancelChecker) throws CancellationException
Description copied from interface:ICodeActionParticipantCollect the code action in the givencodeActionsfor the given code action requestrequestindependently of diagnostic provided.- Specified by:
doCodeActionUnconditionalin interfaceICodeActionParticipant- Parameters:
request- the code action request.codeActions- list of code actions to fill.cancelChecker- the cancel checker.- Throws:
CancellationException- if the computation was cancelled
-
getResolveCodeActionParticipant
public ICodeActionResolvesParticipant getResolveCodeActionParticipant(String participantId)
Description copied from interface:ICodeActionParticipantReturns the codeAction resolver participant identified by the givenparticipantIdand null otherwise.- Specified by:
getResolveCodeActionParticipantin interfaceICodeActionParticipant- Parameters:
participantId- the code action resolver participant ID.- Returns:
- the codeAction resolver participant identified by the given
participantIdand null otherwise.
-
-