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

org.robolectric.shadows.ShadowJsResult Maven / Gradle / Ivy

package org.robolectric.shadows;

import android.webkit.JsResult;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;

@Implements(JsResult.class)
public class ShadowJsResult {

  private boolean wasCancelled;

  @Implementation
  protected void cancel() {
    wasCancelled = true;
  }

  public boolean wasCancelled() {
    return wasCancelled;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy