Package org.eclipse.lsp4j.debug
Class SetFunctionBreakpointsResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetFunctionBreakpointsResponse
-
public class SetFunctionBreakpointsResponse extends java.lang.Object
Response to 'setFunctionBreakpoints' request.Returned is information about each breakpoint created by this request.
-
-
Constructor Summary
Constructors Constructor Description SetFunctionBreakpointsResponse()
-
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 correspond to the elements of the 'breakpoints' array.
-
setBreakpoints
public void setBreakpoints(Breakpoint[] breakpoints)
Information about the breakpoints. The array elements correspond to the elements of the '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
-
-