Class BreakLocation
- java.lang.Object
-
- org.openqa.selenium.devtools.v108.debugger.model.BreakLocation
-
public class BreakLocation extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BreakLocation.Type
-
Constructor Summary
Constructors Constructor Description BreakLocation(ScriptId scriptId, java.lang.Integer lineNumber, java.util.Optional<java.lang.Integer> columnNumber, java.util.Optional<BreakLocation.Type> type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.lang.Integer>
getColumnNumber()
Column number in the script (0-based).java.lang.Integer
getLineNumber()
Line number in the script (0-based).ScriptId
getScriptId()
Script identifier as reported in the `Debugger.scriptParsed`.java.util.Optional<BreakLocation.Type>
getType()
-
-
-
Constructor Detail
-
BreakLocation
public BreakLocation(ScriptId scriptId, java.lang.Integer lineNumber, java.util.Optional<java.lang.Integer> columnNumber, java.util.Optional<BreakLocation.Type> type)
-
-
Method Detail
-
getScriptId
public ScriptId getScriptId()
Script identifier as reported in the `Debugger.scriptParsed`.
-
getLineNumber
public java.lang.Integer getLineNumber()
Line number in the script (0-based).
-
getColumnNumber
public java.util.Optional<java.lang.Integer> getColumnNumber()
Column number in the script (0-based).
-
getType
public java.util.Optional<BreakLocation.Type> getType()
-
-