Package org.eclipse.lsp4j.debug
Class SetBreakpointsArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetBreakpointsArguments
-
public class SetBreakpointsArguments extends java.lang.Object
Arguments for 'setBreakpoints' request.
-
-
Constructor Summary
Constructors Constructor Description SetBreakpointsArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
SourceBreakpoint[]
getBreakpoints()
The code locations of the breakpoints.int[]
getLines()
Deprecated.UseSourceBreakpoint.line
ofbreakpoints
instead.Source
getSource()
The source location of the breakpoints; either 'source.path' or 'source.sourceReference' must be specified.java.lang.Boolean
getSourceModified()
A value of true indicates that the underlying source has been modified which results in new breakpoint locations.int
hashCode()
void
setBreakpoints(SourceBreakpoint[] breakpoints)
The code locations of the breakpoints.void
setLines(int[] lines)
Deprecated.UseSourceBreakpoint.line
ofbreakpoints
instead.void
setSource(Source source)
The source location of the breakpoints; either 'source.path' or 'source.sourceReference' must be specified.void
setSourceModified(java.lang.Boolean sourceModified)
A value of true indicates that the underlying source has been modified which results in new breakpoint locations.java.lang.String
toString()
-
-
-
Method Detail
-
getSource
public Source getSource()
The source location of the breakpoints; either 'source.path' or 'source.sourceReference' must be specified.
-
setSource
public void setSource(Source source)
The source location of the breakpoints; either 'source.path' or 'source.sourceReference' must be specified.
-
getBreakpoints
public SourceBreakpoint[] getBreakpoints()
The code locations of the breakpoints.This is an optional property.
-
setBreakpoints
public void setBreakpoints(SourceBreakpoint[] breakpoints)
The code locations of the breakpoints.This is an optional property.
-
getLines
@Deprecated public int[] getLines()
Deprecated.UseSourceBreakpoint.line
ofbreakpoints
instead.The code locations of the breakpoints.This is an optional property.
-
setLines
@Deprecated public void setLines(int[] lines)
Deprecated.UseSourceBreakpoint.line
ofbreakpoints
instead.The code locations of the breakpoints.This is an optional property.
-
getSourceModified
public java.lang.Boolean getSourceModified()
A value of true indicates that the underlying source has been modified which results in new breakpoint locations.This is an optional property.
-
setSourceModified
public void setSourceModified(java.lang.Boolean sourceModified)
A value of true indicates that the underlying source has been modified which results in new breakpoint locations.This is an optional property.
-
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
-
-