Package org.eclipse.lsp4j
Class WorkspaceUnchangedDocumentDiagnosticReport
- java.lang.Object
-
- org.eclipse.lsp4j.UnchangedDocumentDiagnosticReport
-
- org.eclipse.lsp4j.WorkspaceUnchangedDocumentDiagnosticReport
-
public class WorkspaceUnchangedDocumentDiagnosticReport extends UnchangedDocumentDiagnosticReport
An unchanged document diagnostic report for a workspace diagnostic result.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description WorkspaceUnchangedDocumentDiagnosticReport()WorkspaceUnchangedDocumentDiagnosticReport(java.lang.String resultId, 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.UnchangedDocumentDiagnosticReport
getKind, getResultId, setResultId
-
-
-
-
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 open `null` can 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 open `null` can be provided.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classUnchangedDocumentDiagnosticReport
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classUnchangedDocumentDiagnosticReport
-
hashCode
public int hashCode()
- Overrides:
hashCodein classUnchangedDocumentDiagnosticReport
-
-