Interface IDocumentColorParticipant
- All Known Implementing Classes:
XMLDocumentColorParticipant
public interface IDocumentColorParticipant
Document color participant API.
- Author:
- Angelo ZERR
-
Method Summary
Modifier and TypeMethodDescriptionvoiddoColorPresentations(DOMDocument xmlDocument, org.eclipse.lsp4j.ColorPresentationParams params, List<org.eclipse.lsp4j.ColorPresentation> presentations, org.eclipse.lsp4j.jsonrpc.CancelChecker cancelChecker) Fill the given thepresentationslist ofColorPresentationfor the given DOM documentxmlDocumentand the givenparamscolors presentation parameter.voiddoDocumentColor(DOMDocument xmlDocument, List<org.eclipse.lsp4j.ColorInformation> colors, org.eclipse.lsp4j.jsonrpc.CancelChecker cancelChecker) Fill the given thecolorslist ofColorInformationfor the given DOM documentxmlDocument.
-
Method Details
-
doDocumentColor
void doDocumentColor(DOMDocument xmlDocument, List<org.eclipse.lsp4j.ColorInformation> colors, org.eclipse.lsp4j.jsonrpc.CancelChecker cancelChecker) Fill the given thecolorslist ofColorInformationfor the given DOM documentxmlDocument.- Parameters:
xmlDocument- the DOM document.colors- the colors list to update.cancelChecker- the cancel checker.
-
doColorPresentations
void doColorPresentations(DOMDocument xmlDocument, org.eclipse.lsp4j.ColorPresentationParams params, List<org.eclipse.lsp4j.ColorPresentation> presentations, org.eclipse.lsp4j.jsonrpc.CancelChecker cancelChecker) Fill the given thepresentationslist ofColorPresentationfor the given DOM documentxmlDocumentand the givenparamscolors presentation parameter.- Parameters:
xmlDocument- the DOM document.params- the color presentation parameter.presentations- the presentations list to update.cancelChecker- the cancel checker.
-