Package org.eclipse.lsp4j
Class WorkspaceFullDocumentDiagnosticReport
- java.lang.Object
-
- org.eclipse.lsp4j.FullDocumentDiagnosticReport
-
- org.eclipse.lsp4j.WorkspaceFullDocumentDiagnosticReport
-
public class WorkspaceFullDocumentDiagnosticReport extends FullDocumentDiagnosticReport
A full document diagnostic report for a workspace diagnostic result.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description WorkspaceFullDocumentDiagnosticReport()WorkspaceFullDocumentDiagnosticReport(java.util.List<Diagnostic> items, java.lang.String uri, java.lang.Integer version)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetUri()The URI for which diagnostic information is reported.java.lang.IntegergetVersion()The version number for which the diagnostics are reported.inthashCode()voidsetUri(java.lang.String uri)The URI for which diagnostic information is reported.voidsetVersion(java.lang.Integer version)The version number for which the diagnostics are reported.java.lang.StringtoString()-
Methods inherited from class org.eclipse.lsp4j.FullDocumentDiagnosticReport
getItems, getKind, getResultId, setItems, setResultId
-
-
-
-
Constructor Detail
-
WorkspaceFullDocumentDiagnosticReport
public WorkspaceFullDocumentDiagnosticReport()
-
WorkspaceFullDocumentDiagnosticReport
public WorkspaceFullDocumentDiagnosticReport(java.util.List<Diagnostic> items, java.lang.String uri, java.lang.Integer version)
-
-
Method Detail
-
getUri
public java.lang.String getUri()
The URI for which diagnostic information is reported.
-
setUri
public void setUri(java.lang.String uri)
The URI for which diagnostic information is reported.
-
getVersion
public java.lang.Integer getVersion()
The version number for which the diagnostics are reported. If the document is not marked as opennullcan be provided.
-
setVersion
public void setVersion(java.lang.Integer version)
The version number for which the diagnostics are reported. If the document is not marked as opennullcan be provided.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classFullDocumentDiagnosticReport
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classFullDocumentDiagnosticReport
-
hashCode
public int hashCode()
- Overrides:
hashCodein classFullDocumentDiagnosticReport
-
-