Package org.eclipse.lsp4j.debug
Class SetDataBreakpointsResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetDataBreakpointsResponse
-
public class SetDataBreakpointsResponse extends java.lang.Object
Response to 'setDataBreakpoints' request.Returned is information about each breakpoint created by this request.
-
-
Constructor Summary
Constructors Constructor Description SetDataBreakpointsResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Breakpoint[]
getBreakpoints()
Information about the data breakpoints.int
hashCode()
void
setBreakpoints(Breakpoint[] breakpoints)
Information about the data breakpoints.java.lang.String
toString()
-
-
-
Method Detail
-
getBreakpoints
public Breakpoint[] getBreakpoints()
Information about the data breakpoints. The array elements correspond to the elements of the input argument 'breakpoints' array.
-
setBreakpoints
public void setBreakpoints(Breakpoint[] breakpoints)
Information about the data breakpoints. The array elements correspond to the elements of the input argument 'breakpoints' array.
-
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
-
-