All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.chrome.devtools.client.core.dom.AttributeRemovedEvent Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.dom;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;

/**
 * Fired when `Element`'s attribute is removed.
 */
public final class AttributeRemovedEvent extends Event {
  private NodeId nodeId;

  private String name;

  @JsonCreator
  public AttributeRemovedEvent(@JsonProperty("nodeId") NodeId nodeId,
      @JsonProperty("name") String name) {
    this.nodeId = nodeId;
    this.name = name;
  }

  public NodeId getNodeId() {
    return nodeId;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy