Package org.eclipse.lsp4j.debug
Class SetFunctionBreakpointsArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetFunctionBreakpointsArguments
-
public class SetFunctionBreakpointsArguments extends java.lang.Object
Arguments for 'setFunctionBreakpoints' request.
-
-
Constructor Summary
Constructors Constructor Description SetFunctionBreakpointsArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
FunctionBreakpoint[]
getBreakpoints()
The function names of the breakpoints.int
hashCode()
void
setBreakpoints(FunctionBreakpoint[] breakpoints)
The function names of the breakpoints.java.lang.String
toString()
-
-
-
Method Detail
-
getBreakpoints
public FunctionBreakpoint[] getBreakpoints()
The function names of the breakpoints.
-
setBreakpoints
public void setBreakpoints(FunctionBreakpoint[] breakpoints)
The function names of the breakpoints.
-
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
-
-