blob: 37a4f36adeee5368cf3b32499faeaa3f3b405cf1 [file] [log] [blame]
/**
* Copyright (c) 2017, 2020 Kichwa Coders Ltd. 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.debug;
import org.eclipse.xtext.xbase.lib.Pure;
import org.eclipse.xtext.xbase.lib.util.ToStringBuilder;
/**
* Arguments for 'modules' request.
*/
@SuppressWarnings("all")
public class ModulesArguments {
/**
* The index of the first module to return; if omitted modules start at 0.
* <p>
* This is an optional property.
*/
private Integer startModule;
/**
* The number of modules to return. If moduleCount is not specified or 0, all modules are returned.
* <p>
* This is an optional property.
*/
private Integer moduleCount;
/**
* The index of the first module to return; if omitted modules start at 0.
* <p>
* This is an optional property.
*/
@Pure
public Integer getStartModule() {
return this.startModule;
}
/**
* The index of the first module to return; if omitted modules start at 0.
* <p>
* This is an optional property.
*/
public void setStartModule(final Integer startModule) {
this.startModule = startModule;
}
/**
* The number of modules to return. If moduleCount is not specified or 0, all modules are returned.
* <p>
* This is an optional property.
*/
@Pure
public Integer getModuleCount() {
return this.moduleCount;
}
/**
* The number of modules to return. If moduleCount is not specified or 0, all modules are returned.
* <p>
* This is an optional property.
*/
public void setModuleCount(final Integer moduleCount) {
this.moduleCount = moduleCount;
}
@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("startModule", this.startModule);
b.add("moduleCount", this.moduleCount);
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;
ModulesArguments other = (ModulesArguments) obj;
if (this.startModule == null) {
if (other.startModule != null)
return false;
} else if (!this.startModule.equals(other.startModule))
return false;
if (this.moduleCount == null) {
if (other.moduleCount != null)
return false;
} else if (!this.moduleCount.equals(other.moduleCount))
return false;
return true;
}
@Override
@Pure
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.startModule== null) ? 0 : this.startModule.hashCode());
return prime * result + ((this.moduleCount== null) ? 0 : this.moduleCount.hashCode());
}
}