Package org.eclipse.lsp4j
Class InlineValueWorkspaceCapabilities
- java.lang.Object
-
- org.eclipse.lsp4j.InlineValueWorkspaceCapabilities
-
public class InlineValueWorkspaceCapabilities extends java.lang.ObjectClient workspace capabilities specific to inline values.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description InlineValueWorkspaceCapabilities()InlineValueWorkspaceCapabilities(java.lang.Boolean refreshSupport)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.BooleangetRefreshSupport()Whether the client implementation supports a refresh request sent from the server to the client.inthashCode()voidsetRefreshSupport(java.lang.Boolean refreshSupport)Whether the client implementation supports a refresh request sent from the server to the client.java.lang.StringtoString()
-
-
-
Method Detail
-
getRefreshSupport
public java.lang.Boolean getRefreshSupport()
Whether the client implementation supports a refresh request sent from the server to the client.Note that this event is global and will force the client to refresh all inline values currently shown. It should be used with absolute care and is useful for situations where a server for example detect a project wide change that requires such a calculation.
-
setRefreshSupport
public void setRefreshSupport(java.lang.Boolean refreshSupport)
Whether the client implementation supports a refresh request sent from the server to the client.Note that this event is global and will force the client to refresh all inline values currently shown. It should be used with absolute care and is useful for situations where a server for example detect a project wide change that requires such a calculation.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-