Package io.webfolder.cdp.event.dom
Class AttributeModified
- java.lang.Object
-
- io.webfolder.cdp.event.dom.AttributeModified
-
public class AttributeModified extends Object
Fired whenElement
's attribute is modified
-
-
Constructor Summary
Constructors Constructor Description AttributeModified()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Attribute name.Integer
getNodeId()
Id of the node that has changed.String
getValue()
Attribute value.void
setName(String name)
Attribute name.void
setNodeId(Integer nodeId)
Id of the node that has changed.void
setValue(String value)
Attribute value.
-
-
-
Method Detail
-
getNodeId
public Integer getNodeId()
Id of the node that has changed.
-
setNodeId
public void setNodeId(Integer nodeId)
Id of the node that has changed.
-
getName
public String getName()
Attribute name.
-
setName
public void setName(String name)
Attribute name.
-
getValue
public String getValue()
Attribute value.
-
setValue
public void setValue(String value)
Attribute value.
-
-