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