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

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

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 a stylesheet is changed as a result of the client operation.
 */
public final class StyleSheetChangedEvent extends Event {
  private StyleSheetId styleSheetId;

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

  public StyleSheetId getStyleSheetId() {
    return styleSheetId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy