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

com.hubspot.chrome.devtools.client.core.layertree.LayerPaintedEvent Maven / Gradle / Ivy

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

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

public final class LayerPaintedEvent extends Event {
  private LayerId layerId;

  private Rect clip;

  @JsonCreator
  public LayerPaintedEvent(@JsonProperty("layerId") LayerId layerId,
      @JsonProperty("clip") Rect clip) {
    this.layerId = layerId;
    this.clip = clip;
  }

  public LayerId getLayerId() {
    return layerId;
  }

  public Rect getClip() {
    return clip;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy