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

com.hubspot.chrome.devtools.client.core.runtime.InspectRequestedEvent Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.runtime;

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

/**
 * Issued when object should be inspected (for example, as a result of inspect() command line API
 * call).
 */
public final class InspectRequestedEvent extends Event {
  private RemoteObject object;

  private Object hints;

  @JsonCreator
  public InspectRequestedEvent(@JsonProperty("object") RemoteObject object,
      @JsonProperty("hints") Object hints) {
    this.object = object;
    this.hints = hints;
  }

  public RemoteObject getObject() {
    return object;
  }

  public Object getHints() {
    return hints;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy