blob: 2ac969759a0ec94ccffdc7f48e73f7c940221ca1 [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 java.util.Arrays;
import org.eclipse.lsp4j.debug.ExceptionFilterOptions;
import org.eclipse.lsp4j.debug.ExceptionOptions;
import org.eclipse.lsp4j.debug.util.Preconditions;
import org.eclipse.lsp4j.jsonrpc.validation.NonNull;
import org.eclipse.xtext.xbase.lib.Pure;
import org.eclipse.xtext.xbase.lib.util.ToStringBuilder;
/**
* Arguments for 'setExceptionBreakpoints' request.
*/
@SuppressWarnings("all")
public class SetExceptionBreakpointsArguments {
/**
* Set of exception filters specified by their ID. The set of all possible exception filters is defined by the
* 'exceptionBreakpointFilters' capability. The 'filter' and 'filterOptions' sets are additive.
*/
@NonNull
private String[] filters;
/**
* Set of exception filters and their options. The set of all possible exception filters is defined by the
* 'exceptionBreakpointFilters' capability. This attribute is only honored by a debug adapter if the capability
* 'supportsExceptionFilterOptions' is true. The 'filter' and 'filterOptions' sets are additive.
* <p>
* This is an optional property.
*/
private ExceptionFilterOptions[] filterOptions;
/**
* Configuration options for selected exceptions.
* <p>
* The attribute is only honored by a debug adapter if the capability 'supportsExceptionOptions' is true.
* <p>
* This is an optional property.
*/
private ExceptionOptions[] exceptionOptions;
/**
* Set of exception filters specified by their ID. The set of all possible exception filters is defined by the
* 'exceptionBreakpointFilters' capability. The 'filter' and 'filterOptions' sets are additive.
*/
@Pure
@NonNull
public String[] getFilters() {
return this.filters;
}
/**
* Set of exception filters specified by their ID. The set of all possible exception filters is defined by the
* 'exceptionBreakpointFilters' capability. The 'filter' and 'filterOptions' sets are additive.
*/
public void setFilters(@NonNull final String[] filters) {
this.filters = Preconditions.checkNotNull(filters, "filters");
}
/**
* Set of exception filters and their options. The set of all possible exception filters is defined by the
* 'exceptionBreakpointFilters' capability. This attribute is only honored by a debug adapter if the capability
* 'supportsExceptionFilterOptions' is true. The 'filter' and 'filterOptions' sets are additive.
* <p>
* This is an optional property.
*/
@Pure
public ExceptionFilterOptions[] getFilterOptions() {
return this.filterOptions;
}
/**
* Set of exception filters and their options. The set of all possible exception filters is defined by the
* 'exceptionBreakpointFilters' capability. This attribute is only honored by a debug adapter if the capability
* 'supportsExceptionFilterOptions' is true. The 'filter' and 'filterOptions' sets are additive.
* <p>
* This is an optional property.
*/
public void setFilterOptions(final ExceptionFilterOptions[] filterOptions) {
this.filterOptions = filterOptions;
}
/**
* Configuration options for selected exceptions.
* <p>
* The attribute is only honored by a debug adapter if the capability 'supportsExceptionOptions' is true.
* <p>
* This is an optional property.
*/
@Pure
public ExceptionOptions[] getExceptionOptions() {
return this.exceptionOptions;
}
/**
* Configuration options for selected exceptions.
* <p>
* The attribute is only honored by a debug adapter if the capability 'supportsExceptionOptions' is true.
* <p>
* This is an optional property.
*/
public void setExceptionOptions(final ExceptionOptions[] exceptionOptions) {
this.exceptionOptions = exceptionOptions;
}
@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("filters", this.filters);
b.add("filterOptions", this.filterOptions);
b.add("exceptionOptions", this.exceptionOptions);
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;
SetExceptionBreakpointsArguments other = (SetExceptionBreakpointsArguments) obj;
if (this.filters == null) {
if (other.filters != null)
return false;
} else if (!Arrays.deepEquals(this.filters, other.filters))
return false;
if (this.filterOptions == null) {
if (other.filterOptions != null)
return false;
} else if (!Arrays.deepEquals(this.filterOptions, other.filterOptions))
return false;
if (this.exceptionOptions == null) {
if (other.exceptionOptions != null)
return false;
} else if (!Arrays.deepEquals(this.exceptionOptions, other.exceptionOptions))
return false;
return true;
}
@Override
@Pure
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.filters== null) ? 0 : Arrays.deepHashCode(this.filters));
result = prime * result + ((this.filterOptions== null) ? 0 : Arrays.deepHashCode(this.filterOptions));
return prime * result + ((this.exceptionOptions== null) ? 0 : Arrays.deepHashCode(this.exceptionOptions));
}
}