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

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

package org.robolectric.shadows;

import static android.os.Build.VERSION_CODES.KITKAT;

import android.view.InputDevice;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.shadow.api.Shadow;

@Implements(InputDevice.class)
public class ShadowInputDevice {
  private String deviceName;
  private int productId;
  private int vendorId;

  public static InputDevice makeInputDeviceNamed(String deviceName) {
    InputDevice inputDevice = Shadow.newInstanceOf(InputDevice.class);
    ShadowInputDevice shadowInputDevice = Shadow.extract(inputDevice);
    shadowInputDevice.setDeviceName(deviceName);
    return inputDevice;
  }

  @Implementation
  protected String getName() {
    return deviceName;
  }

  @Implementation(minSdk = KITKAT)
  protected int getProductId() {
    return productId;
  }

  @Implementation(minSdk = KITKAT)
  protected int getVendorId() {
    return vendorId;
  }

  public void setDeviceName(String deviceName) {
    this.deviceName = deviceName;
  }

  public void setProductId(int productId) {
    this.productId = productId;
  }

  public void setVendorId(int vendorId) {
    this.vendorId = vendorId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy