Class DiagnosticParams

java.lang.Object
com.github._1c_syntax.bsl.languageserver.jsonrpc.DiagnosticParams

public class DiagnosticParams extends Object
Параметры запроса textDocument/x-diagnostics.
См. BSLTextDocumentService.diagnostics(DiagnosticParams)
  • Constructor Summary

    Constructors
    Constructor
    Description
    DiagnosticParams(org.eclipse.lsp4j.TextDocumentIdentifier textDocument)
    Creates a new DiagnosticParams instance.
    DiagnosticParams(org.eclipse.lsp4j.TextDocumentIdentifier textDocument, org.eclipse.lsp4j.Range range)
    Creates a new DiagnosticParams instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    protected boolean
     
    boolean
     
    org.eclipse.lsp4j.Range
    Диапазон, для которого нужно получить список диагностик.
    org.eclipse.lsp4j.TextDocumentIdentifier
    Идентификатор текстового документа.
    int
     
    void
    setRange(org.eclipse.lsp4j.Range range)
    Диапазон, для которого нужно получить список диагностик.
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • DiagnosticParams

      @ConstructorProperties("textDocument") public DiagnosticParams(org.eclipse.lsp4j.TextDocumentIdentifier textDocument)
      Creates a new DiagnosticParams instance.
      Parameters:
      textDocument - Идентификатор текстового документа.
    • DiagnosticParams

      @ConstructorProperties({"textDocument","range"}) public DiagnosticParams(org.eclipse.lsp4j.TextDocumentIdentifier textDocument, @Nullable org.eclipse.lsp4j.Range range)
      Creates a new DiagnosticParams instance.
      Parameters:
      textDocument - Идентификатор текстового документа.
      range - Диапазон, для которого нужно получить список диагностик.
      Если не передан, возвращается весь список диагностик документа.
  • Method Details

    • getTextDocument

      public org.eclipse.lsp4j.TextDocumentIdentifier getTextDocument()
      Идентификатор текстового документа.
    • getRange

      @Nullable public org.eclipse.lsp4j.Range getRange()
      Диапазон, для которого нужно получить список диагностик.
      Если не передан, возвращается весь список диагностик документа.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • setRange

      public void setRange(@Nullable org.eclipse.lsp4j.Range range)
      Диапазон, для которого нужно получить список диагностик.
      Если не передан, возвращается весь список диагностик документа.