blob: 249a348bf6b369e0996a01502e00c7dfe8e3c206 [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.ArrayList;
import java.util.List;
import org.eclipse.lsp4j.CompletionItem;
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;
/**
* Represents a collection of completion items to be presented in the editor.
*/
@SuppressWarnings("all")
public class CompletionList {
/**
* This list it not complete. Further typing should result in recomputing this list.
*/
private boolean isIncomplete;
/**
* The completion items.
*/
@NonNull
private List<CompletionItem> items;
public CompletionList() {
this(new ArrayList<CompletionItem>());
}
public CompletionList(@NonNull final List<CompletionItem> items) {
this.items = Preconditions.<List<CompletionItem>>checkNotNull(items, "items");
}
public CompletionList(final boolean isIncomplete, @NonNull final List<CompletionItem> items) {
this(items);
this.isIncomplete = isIncomplete;
}
/**
* This list it not complete. Further typing should result in recomputing this list.
*/
@Pure
public boolean isIncomplete() {
return this.isIncomplete;
}
/**
* This list it not complete. Further typing should result in recomputing this list.
*/
public void setIsIncomplete(final boolean isIncomplete) {
this.isIncomplete = isIncomplete;
}
/**
* The completion items.
*/
@Pure
@NonNull
public List<CompletionItem> getItems() {
return this.items;
}
/**
* The completion items.
*/
public void setItems(@NonNull final List<CompletionItem> items) {
this.items = Preconditions.checkNotNull(items, "items");
}
@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("isIncomplete", this.isIncomplete);
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;
CompletionList other = (CompletionList) obj;
if (other.isIncomplete != this.isIncomplete)
return false;
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() {
final int prime = 31;
int result = 1;
result = prime * result + (this.isIncomplete ? 1231 : 1237);
return prime * result + ((this.items== null) ? 0 : this.items.hashCode());
}
}