1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "android-util-MutableFloat"))]
__jni_bindgen! {
    /// public final class [MutableFloat](https://developer.android.com/reference/android/util/MutableFloat.html)
    ///
    /// Required feature: "android-util-MutableFloat"
    #[deprecated] public final class MutableFloat ("android/util/MutableFloat") extends crate::java::lang::Object {

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

        /// **get** public [value](https://developer.android.com/reference/android/util/MutableFloat.html#value)
        pub fn value<'env>(&'env self) -> f32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/util/MutableFloat\0", "value\0", "F\0");
                env.get_float_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [value](https://developer.android.com/reference/android/util/MutableFloat.html#value)
        pub fn set_value<'env>(&'env self, value: f32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/util/MutableFloat\0", "value\0", "F\0");
                env.set_float_field(self.0.object, __jni_field, value)
            }
        }
    }
}