Package org.eclipse.lsp4j.debug
Class ExceptionOptions
- java.lang.Object
-
- org.eclipse.lsp4j.debug.ExceptionOptions
-
public class ExceptionOptions extends java.lang.Object
An ExceptionOptions assigns configuration options to a set of exceptions.
-
-
Constructor Summary
Constructors Constructor Description ExceptionOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
ExceptionBreakMode
getBreakMode()
Condition when a thrown exception should result in a break.ExceptionPathSegment[]
getPath()
A path that selects a single or multiple exceptions in a tree.int
hashCode()
void
setBreakMode(ExceptionBreakMode breakMode)
Condition when a thrown exception should result in a break.void
setPath(ExceptionPathSegment[] path)
A path that selects a single or multiple exceptions in a tree.java.lang.String
toString()
-
-
-
Method Detail
-
getPath
public ExceptionPathSegment[] getPath()
A path that selects a single or multiple exceptions in a tree. If 'path' is missing, the whole tree is selected.By convention the first segment of the path is a category that is used to group exceptions in the UI.
This is an optional property.
-
setPath
public void setPath(ExceptionPathSegment[] path)
A path that selects a single or multiple exceptions in a tree. If 'path' is missing, the whole tree is selected.By convention the first segment of the path is a category that is used to group exceptions in the UI.
This is an optional property.
-
getBreakMode
public ExceptionBreakMode getBreakMode()
Condition when a thrown exception should result in a break.
-
setBreakMode
public void setBreakMode(ExceptionBreakMode breakMode)
Condition when a thrown exception should result in a break.
-
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
-
-