Package io.webfolder.cdp.event.target
Class AttachedToTarget
- java.lang.Object
-
- io.webfolder.cdp.event.target.AttachedToTarget
-
public class AttachedToTarget extends java.lang.Object
Issued when attached to target because of auto-attach orattachToTarget
command
-
-
Constructor Summary
Constructors Constructor Description AttachedToTarget()
-
Method Summary
Modifier and Type Method Description java.lang.String
getSessionId()
Identifier assigned to the session used to send/receive messages.TargetInfo
getTargetInfo()
java.lang.Boolean
isWaitingForDebugger()
void
setSessionId(java.lang.String sessionId)
Identifier assigned to the session used to send/receive messages.void
setTargetInfo(TargetInfo targetInfo)
void
setWaitingForDebugger(java.lang.Boolean waitingForDebugger)
-
-
-
Method Detail
-
getSessionId
public java.lang.String getSessionId()
Identifier assigned to the session used to send/receive messages.
-
setSessionId
public void setSessionId(java.lang.String sessionId)
Identifier assigned to the session used to send/receive messages.
-
getTargetInfo
public TargetInfo getTargetInfo()
-
setTargetInfo
public void setTargetInfo(TargetInfo targetInfo)
-
isWaitingForDebugger
public java.lang.Boolean isWaitingForDebugger()
-
setWaitingForDebugger
public void setWaitingForDebugger(java.lang.Boolean waitingForDebugger)
-
-