Package io.webfolder.cdp.event.dom
Class SetChildNodes
- java.lang.Object
-
- io.webfolder.cdp.event.dom.SetChildNodes
-
public class SetChildNodes extends java.lang.Object
Fired when backend wants to provide client with the missing DOM structure This happens upon most of the calls requesting node ids
-
-
Constructor Summary
Constructors Constructor Description SetChildNodes()
-
Method Summary
Modifier and Type Method Description java.util.List<Node>
getNodes()
Child nodes array.java.lang.Integer
getParentId()
Parent node id to populate with children.void
setNodes(java.util.List<Node> nodes)
Child nodes array.void
setParentId(java.lang.Integer parentId)
Parent node id to populate with children.
-
-
-
Method Detail
-
getParentId
public java.lang.Integer getParentId()
Parent node id to populate with children.
-
setParentId
public void setParentId(java.lang.Integer parentId)
Parent node id to populate with children.
-
getNodes
public java.util.List<Node> getNodes()
Child nodes array.
-
setNodes
public void setNodes(java.util.List<Node> nodes)
Child nodes array.
-
-