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

com.hubspot.chrome.devtools.client.core.dom.PseudoElementRemovedEvent 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;

/**
 * Called when a pseudo element is removed from an element.
 */
public final class PseudoElementRemovedEvent extends Event {
  private NodeId parentId;

  private NodeId pseudoElementId;

  @JsonCreator
  public PseudoElementRemovedEvent(@JsonProperty("parentId") NodeId parentId,
      @JsonProperty("pseudoElementId") NodeId pseudoElementId) {
    this.parentId = parentId;
    this.pseudoElementId = pseudoElementId;
  }

  public NodeId getParentId() {
    return parentId;
  }

  public NodeId getPseudoElementId() {
    return pseudoElementId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy