Package org.eclipse.lsp4j.debug
Class SetBreakpointsResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetBreakpointsResponse
-
public class SetBreakpointsResponse extends java.lang.Object
Response to 'setBreakpoints' request.Returned is information about each breakpoint created by this request.
This includes the actual code location and whether the breakpoint could be verified.
The breakpoints returned are in the same order as the elements of the 'breakpoints'
(or the deprecated 'lines') array in the arguments.
-
-
Constructor Summary
Constructors Constructor Description SetBreakpointsResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Breakpoint[]
getBreakpoints()
Information about the breakpoints.int
hashCode()
void
setBreakpoints(Breakpoint[] breakpoints)
Information about the breakpoints.java.lang.String
toString()
-
-
-
Method Detail
-
getBreakpoints
public Breakpoint[] getBreakpoints()
Information about the breakpoints.The array elements are in the same order as the elements of the 'breakpoints' (or the deprecated 'lines') array in the arguments.
-
setBreakpoints
public void setBreakpoints(Breakpoint[] breakpoints)
Information about the breakpoints.The array elements are in the same order as the elements of the 'breakpoints' (or the deprecated 'lines') array in the arguments.
-
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
-
-