Package org.eclipse.lsp4j.debug
Class SetExceptionBreakpointsArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetExceptionBreakpointsArguments
-
public class SetExceptionBreakpointsArguments extends java.lang.Object
Arguments for 'setExceptionBreakpoints' request.
-
-
Constructor Summary
Constructors Constructor Description SetExceptionBreakpointsArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
ExceptionOptions[]
getExceptionOptions()
Configuration options for selected exceptions.ExceptionFilterOptions[]
getFilterOptions()
Set of exception filters and their options.java.lang.String[]
getFilters()
Set of exception filters specified by their ID.int
hashCode()
void
setExceptionOptions(ExceptionOptions[] exceptionOptions)
Configuration options for selected exceptions.void
setFilterOptions(ExceptionFilterOptions[] filterOptions)
Set of exception filters and their options.void
setFilters(java.lang.String[] filters)
Set of exception filters specified by their ID.java.lang.String
toString()
-
-
-
Method Detail
-
getFilters
public java.lang.String[] getFilters()
Set of exception filters specified by their ID. The set of all possible exception filters is defined by theCapabilities.getExceptionBreakpointFilters()
capability. The 'filter' and 'filterOptions' sets are additive.
-
setFilters
public void setFilters(java.lang.String[] filters)
Set of exception filters specified by their ID. The set of all possible exception filters is defined by theCapabilities.getExceptionBreakpointFilters()
capability. The 'filter' and 'filterOptions' sets are additive.
-
getFilterOptions
public ExceptionFilterOptions[] getFilterOptions()
Set of exception filters and their options. The set of all possible exception filters is defined by theCapabilities.getExceptionBreakpointFilters()
capability. This attribute is only honored by a debug adapter if the corresponding capabilityCapabilities.getSupportsExceptionFilterOptions()
is true. The 'filter' and 'filterOptions' sets are additive.This is an optional property.
Since 1.43
-
setFilterOptions
public void setFilterOptions(ExceptionFilterOptions[] filterOptions)
Set of exception filters and their options. The set of all possible exception filters is defined by theCapabilities.getExceptionBreakpointFilters()
capability. This attribute is only honored by a debug adapter if the corresponding capabilityCapabilities.getSupportsExceptionFilterOptions()
is true. The 'filter' and 'filterOptions' sets are additive.This is an optional property.
Since 1.43
-
getExceptionOptions
public ExceptionOptions[] getExceptionOptions()
Configuration options for selected exceptions.The attribute is only honored by a debug adapter if the corresponding capability
Capabilities.getSupportsExceptionOptions()
is true.This is an optional property.
-
setExceptionOptions
public void setExceptionOptions(ExceptionOptions[] exceptionOptions)
Configuration options for selected exceptions.The attribute is only honored by a debug adapter if the corresponding capability
Capabilities.getSupportsExceptionOptions()
is true.This is an optional property.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-