1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


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

        /// [isObjectSelected](https://developer.android.com/reference/android/util/DebugUtils.html#isObjectSelected(java.lang.Object))
        ///
        /// Required features: "java-lang-Object"
        #[cfg(any(feature = "all", all(feature = "java-lang-Object")))]
        pub fn isObjectSelected<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::Object>>) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/util/DebugUtils", java.flags == PUBLIC | STATIC, .name == "isObjectSelected", .descriptor == "(Ljava/lang/Object;)Z"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/util/DebugUtils\0", "isObjectSelected\0", "(Ljava/lang/Object;)Z\0");
                __jni_env.call_static_boolean_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }
    }
}