-
public final class SetBreakpointByUrlRequestRequest object containing input parameters for the DebuggerDomain.setBreakpointByUrl command.
-
-
Field Summary
Fields Modifier and Type Field Description private final IntegerlineNumberprivate final Stringurlprivate final StringurlRegexprivate final StringscriptHashprivate final IntegercolumnNumberprivate final Stringcondition
-
Method Summary
Modifier and Type Method Description final Integercomponent1()final Stringcomponent2()final Stringcomponent3()final Stringcomponent4()final Integercomponent5()final Stringcomponent6()final SetBreakpointByUrlRequestcopy(Integer lineNumber, String url, String urlRegex, String scriptHash, Integer columnNumber, String condition)final IntegergetLineNumber()Line number to set breakpoint at. final StringgetUrl()URL of the resources to set breakpoint on. final StringgetUrlRegex()Regex pattern for the URLs of the resources to set breakpoints on. final StringgetScriptHash()Script hash of the resources to set breakpoint on. final IntegergetColumnNumber()Offset in the line to set breakpoint at. final StringgetCondition()Expression to use as a breakpoint condition. -
-
Method Detail
-
component1
final Integer component1()
-
component2
final String component2()
-
component3
final String component3()
-
component4
final String component4()
-
component5
final Integer component5()
-
component6
final String component6()
-
copy
final SetBreakpointByUrlRequest copy(Integer lineNumber, String url, String urlRegex, String scriptHash, Integer columnNumber, String condition)
-
getLineNumber
final Integer getLineNumber()
Line number to set breakpoint at.
-
getUrlRegex
final String getUrlRegex()
Regex pattern for the URLs of the resources to set breakpoints on. Either
urlorurlRegexmust be specified.
-
getScriptHash
final String getScriptHash()
Script hash of the resources to set breakpoint on.
-
getColumnNumber
final Integer getColumnNumber()
Offset in the line to set breakpoint at.
-
getCondition
final String getCondition()
Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
-
-
-
-