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

com.hubspot.chrome.devtools.client.core.css.StyleSheetRemovedEvent Maven / Gradle / Ivy

There is a newer version: 94.0.4606.61
Show newest version
package com.hubspot.chrome.devtools.client.core.css;

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

/**
 * Fired whenever an active document stylesheet is removed.
 */
public final class StyleSheetRemovedEvent extends Event {
  private StyleSheetId styleSheetId;

  @JsonCreator
  public StyleSheetRemovedEvent(@JsonProperty("styleSheetId") StyleSheetId styleSheetId) {
    this.styleSheetId = styleSheetId;
  }

  public StyleSheetId getStyleSheetId() {
    return styleSheetId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy