blob: e4fc656647cd9d19e385358ea552d5c78009531a [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 java.util.List;
import org.eclipse.lsp4j.ConfigurationItem;
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;
/**
* The workspace/configuration request is sent from the server to the client to fetch configuration
* settings from the client. The request can fetch several configuration settings in one roundtrip.
* The order of the returned configuration settings correspond to the order of the passed
* {@link ConfigurationItem}s (e.g. the first item in the response is the result for the first
* configuration item in the params).
* <p>
* Since 3.6.0
*/
@SuppressWarnings("all")
public class ConfigurationParams {
@NonNull
private List<ConfigurationItem> items;
public ConfigurationParams() {
}
public ConfigurationParams(@NonNull final List<ConfigurationItem> items) {
this.items = Preconditions.<List<ConfigurationItem>>checkNotNull(items, "items");
}
@Pure
@NonNull
public List<ConfigurationItem> getItems() {
return this.items;
}
public void setItems(@NonNull final List<ConfigurationItem> items) {
this.items = Preconditions.checkNotNull(items, "items");
}
@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("items", this.items);
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;
ConfigurationParams other = (ConfigurationParams) obj;
if (this.items == null) {
if (other.items != null)
return false;
} else if (!this.items.equals(other.items))
return false;
return true;
}
@Override
@Pure
public int hashCode() {
return 31 * 1 + ((this.items== null) ? 0 : this.items.hashCode());
}
}