Package org.eclipse.lsp4j
Class ClientInfo
- java.lang.Object
-
- org.eclipse.lsp4j.ClientInfo
-
public class ClientInfo extends java.lang.ObjectInformation about the clientSince 3.15.0
-
-
Constructor Summary
Constructors Constructor Description ClientInfo()ClientInfo(java.lang.String name)ClientInfo(java.lang.String name, java.lang.String version)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetName()The name of the client as defined by the client.java.lang.StringgetVersion()The client's version as defined by the client.inthashCode()voidsetName(java.lang.String name)The name of the client as defined by the client.voidsetVersion(java.lang.String version)The client's version as defined by the client.java.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
The name of the client as defined by the client.
-
setName
public void setName(java.lang.String name)
The name of the client as defined by the client.
-
getVersion
public java.lang.String getVersion()
The client's version as defined by the client.
-
setVersion
public void setVersion(java.lang.String version)
The client's version as defined by the client.
-
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
-
-