jni-android-sys 0.0.10

Autogenerated glue code for access Android JVM APIs from Rust
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "android-view-animation-LayoutAnimationController_AnimationParameters"))]
__jni_bindgen! {
    /// public class [LayoutAnimationController.AnimationParameters](https://developer.android.com/reference/android/view/animation/LayoutAnimationController.AnimationParameters.html)
    ///
    /// Required feature: "android-view-animation-LayoutAnimationController_AnimationParameters"
    public class LayoutAnimationController_AnimationParameters ("android/view/animation/LayoutAnimationController$AnimationParameters") extends crate::java::lang::Object {

        /// [AnimationParameters](https://developer.android.com/reference/android/view/animation/LayoutAnimationController.AnimationParameters.html#AnimationParameters())
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::view::animation::LayoutAnimationController_AnimationParameters>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/view/animation/LayoutAnimationController$AnimationParameters", java.flags == PUBLIC, .name == "<init>", .descriptor == "()V"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/view/animation/LayoutAnimationController$AnimationParameters\0", "<init>\0", "()V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// **get** public [count](https://developer.android.com/reference/android/view/animation/LayoutAnimationController.AnimationParameters.html#count)
        pub fn count<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/view/animation/LayoutAnimationController$AnimationParameters\0", "count\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [count](https://developer.android.com/reference/android/view/animation/LayoutAnimationController.AnimationParameters.html#count)
        pub fn set_count<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/view/animation/LayoutAnimationController$AnimationParameters\0", "count\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [index](https://developer.android.com/reference/android/view/animation/LayoutAnimationController.AnimationParameters.html#index)
        pub fn index<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/view/animation/LayoutAnimationController$AnimationParameters\0", "index\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [index](https://developer.android.com/reference/android/view/animation/LayoutAnimationController.AnimationParameters.html#index)
        pub fn set_index<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/view/animation/LayoutAnimationController$AnimationParameters\0", "index\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }
    }
}