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

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

package org.robolectric.shadows;

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

import android.animation.PropertyValuesHolder;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.nativeruntime.DefaultNativeRuntimeLoader;
import org.robolectric.nativeruntime.PropertyValuesHolderNatives;
import org.robolectric.shadows.ShadowNativePropertyValuesHolder.Picker;

/** Shadow for {@link PropertyValuesHolder} that is backed by native code */
@Implements(value = PropertyValuesHolder.class, minSdk = O, shadowPicker = Picker.class)
public class ShadowNativePropertyValuesHolder {

  static {
    DefaultNativeRuntimeLoader.injectAndLoad();
  }

  @Implementation
  protected static long nGetIntMethod(Class targetClass, String methodName) {
    return PropertyValuesHolderNatives.nGetIntMethod(targetClass, methodName);
  }

  @Implementation
  protected static long nGetFloatMethod(Class targetClass, String methodName) {
    return PropertyValuesHolderNatives.nGetFloatMethod(targetClass, methodName);
  }

  @Implementation
  protected static long nGetMultipleIntMethod(
      Class targetClass, String methodName, int numParams) {
    return PropertyValuesHolderNatives.nGetMultipleIntMethod(targetClass, methodName, numParams);
  }

  @Implementation
  protected static long nGetMultipleFloatMethod(
      Class targetClass, String methodName, int numParams) {
    return PropertyValuesHolderNatives.nGetMultipleFloatMethod(targetClass, methodName, numParams);
  }

  @Implementation
  protected static void nCallIntMethod(Object target, long methodID, int arg) {
    PropertyValuesHolderNatives.nCallIntMethod(target, methodID, arg);
  }

  @Implementation
  protected static void nCallFloatMethod(Object target, long methodID, float arg) {
    PropertyValuesHolderNatives.nCallFloatMethod(target, methodID, arg);
  }

  @Implementation
  protected static void nCallTwoIntMethod(Object target, long methodID, int arg1, int arg2) {
    PropertyValuesHolderNatives.nCallTwoIntMethod(target, methodID, arg1, arg2);
  }

  @Implementation
  protected static void nCallFourIntMethod(
      Object target, long methodID, int arg1, int arg2, int arg3, int arg4) {
    PropertyValuesHolderNatives.nCallFourIntMethod(target, methodID, arg1, arg2, arg3, arg4);
  }

  @Implementation
  protected static void nCallMultipleIntMethod(Object target, long methodID, int[] args) {
    PropertyValuesHolderNatives.nCallMultipleIntMethod(target, methodID, args);
  }

  @Implementation
  protected static void nCallTwoFloatMethod(Object target, long methodID, float arg1, float arg2) {
    PropertyValuesHolderNatives.nCallTwoFloatMethod(target, methodID, arg1, arg2);
  }

  @Implementation
  protected static void nCallFourFloatMethod(
      Object target, long methodID, float arg1, float arg2, float arg3, float arg4) {
    PropertyValuesHolderNatives.nCallFourFloatMethod(target, methodID, arg1, arg2, arg3, arg4);
  }

  @Implementation
  protected static void nCallMultipleFloatMethod(Object target, long methodID, float[] args) {
    PropertyValuesHolderNatives.nCallMultipleFloatMethod(target, methodID, args);
  }

  /** Shadow picker for {@link PropertyValuesHolder}. */
  public static final class Picker extends GraphicsShadowPicker {
    public Picker() {
      super(ShadowPropertyValuesHolder.class, ShadowNativePropertyValuesHolder.class);
    }
  }
}