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

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

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 java.util.List;

public final class LayerTreeDidChangeEvent extends Event {
  private List layers;

  @JsonCreator
  public LayerTreeDidChangeEvent(@JsonProperty("layers") List layers) {
    this.layers = layers;
  }

  public List getLayers() {
    return layers;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy