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-MutableBoolean"))]
__jni_bindgen! {
    /// public final class [MutableBoolean](https://developer.android.com/reference/android/util/MutableBoolean.html)
    ///
    /// Required feature: "android-util-MutableBoolean"
    #[deprecated] public final class MutableBoolean ("android/util/MutableBoolean") extends crate::java::lang::Object {

        /// [MutableBoolean](https://developer.android.com/reference/android/util/MutableBoolean.html#MutableBoolean(boolean))
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: bool) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::util::MutableBoolean>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/util/MutableBoolean", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Z)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/util/MutableBoolean\0", "<init>\0", "(Z)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/MutableBoolean.html#value)
        pub fn value<'env>(&'env self) -> bool {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/util/MutableBoolean\0", "value\0", "Z\0");
                env.get_boolean_field(self.0.object, __jni_field)
            }
        }

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