blob: d75981145aaa3981ec6086d351350001ffe1ba8a [file] [log] [blame]
/**
* Copyright (c) 2016-2018 TypeFox and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
package org.eclipse.lsp4j;
import org.eclipse.lsp4j.jsonrpc.validation.NonNull;
import org.eclipse.lsp4j.util.Preconditions;
import org.eclipse.xtext.xbase.lib.Pure;
import org.eclipse.xtext.xbase.lib.util.ToStringBuilder;
/**
* Information about the server.
* <p>
* Since 3.15.0
*/
@SuppressWarnings("all")
public class ServerInfo {
/**
* The name of the server as defined by the server.
*/
@NonNull
private String name;
/**
* The server's version as defined by the server.
*/
private String version;
public ServerInfo() {
}
public ServerInfo(@NonNull final String name) {
this.name = Preconditions.<String>checkNotNull(name, "name");
}
public ServerInfo(@NonNull final String name, final String version) {
this(name);
this.version = version;
}
/**
* The name of the server as defined by the server.
*/
@Pure
@NonNull
public String getName() {
return this.name;
}
/**
* The name of the server as defined by the server.
*/
public void setName(@NonNull final String name) {
this.name = Preconditions.checkNotNull(name, "name");
}
/**
* The server's version as defined by the server.
*/
@Pure
public String getVersion() {
return this.version;
}
/**
* The server's version as defined by the server.
*/
public void setVersion(final String version) {
this.version = version;
}
@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("name", this.name);
b.add("version", this.version);
return b.toString();
}
@Override
@Pure
public boolean equals(final Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ServerInfo other = (ServerInfo) obj;
if (this.name == null) {
if (other.name != null)
return false;
} else if (!this.name.equals(other.name))
return false;
if (this.version == null) {
if (other.version != null)
return false;
} else if (!this.version.equals(other.version))
return false;
return true;
}
@Override
@Pure
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.name== null) ? 0 : this.name.hashCode());
return prime * result + ((this.version== null) ? 0 : this.version.hashCode());
}
}