// WARNING: This file was autogenerated by jni-bindgen. Any changes to this file may be lost!!!
#[cfg(any(feature = "all", feature = "android-widget-CursorAdapter"))]
__jni_bindgen! {
/// public class [CursorAdapter](https://developer.android.com/reference/android/widget/CursorAdapter.html)
///
/// Required feature: "android-widget-CursorAdapter"
public class CursorAdapter ("android/widget/CursorAdapter") extends crate::android::widget::BaseAdapter, implements crate::android::widget::Filterable {
/// [CursorAdapter](https://developer.android.com/reference/android/widget/CursorAdapter.html#CursorAdapter(android.content.Context,%20android.database.Cursor))
///
/// Required features: "android-content-Context", "android-database-Cursor"
#[cfg(any(feature = "all", all(feature = "android-content-Context", feature = "android-database-Cursor")))]
pub fn new_Context_Cursor<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::database::Cursor>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::widget::CursorAdapter>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/content/Context;Landroid/database/Cursor;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "<init>\0", "(Landroid/content/Context;Landroid/database/Cursor;)V\0");
__jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
}
}
/// [CursorAdapter](https://developer.android.com/reference/android/widget/CursorAdapter.html#CursorAdapter(android.content.Context,%20android.database.Cursor,%20boolean))
///
/// Required features: "android-content-Context", "android-database-Cursor"
#[cfg(any(feature = "all", all(feature = "android-content-Context", feature = "android-database-Cursor")))]
pub fn new_Context_Cursor_boolean<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::database::Cursor>>, arg2: bool) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::widget::CursorAdapter>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/content/Context;Landroid/database/Cursor;Z)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2)];
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "<init>\0", "(Landroid/content/Context;Landroid/database/Cursor;Z)V\0");
__jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
}
}
/// [getCursor](https://developer.android.com/reference/android/widget/CursorAdapter.html#getCursor())
///
/// Required features: "android-database-Cursor"
#[cfg(any(feature = "all", all(feature = "android-database-Cursor")))]
pub fn getCursor<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::database::Cursor>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getCursor", .descriptor == "()Landroid/database/Cursor;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getCursor\0", "()Landroid/database/Cursor;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getCount](https://developer.android.com/reference/android/widget/CursorAdapter.html#getCount())
pub fn getCount<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getCount", .descriptor == "()I"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getCount\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getItem](https://developer.android.com/reference/android/widget/CursorAdapter.html#getItem(int))
///
/// Required features: "java-lang-Object"
#[cfg(any(feature = "all", all(feature = "java-lang-Object")))]
pub fn getItem<'env>(&'env self, arg0: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::Object>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getItem", .descriptor == "(I)Ljava/lang/Object;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getItem\0", "(I)Ljava/lang/Object;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getItemId](https://developer.android.com/reference/android/widget/CursorAdapter.html#getItemId(int))
pub fn getItemId<'env>(&'env self, arg0: i32) -> __jni_bindgen::std::result::Result<i64, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getItemId", .descriptor == "(I)J"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getItemId\0", "(I)J\0");
__jni_env.call_long_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [hasStableIds](https://developer.android.com/reference/android/widget/CursorAdapter.html#hasStableIds())
pub fn hasStableIds<'env>(&'env self) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "hasStableIds", .descriptor == "()Z"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "hasStableIds\0", "()Z\0");
__jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getView](https://developer.android.com/reference/android/widget/CursorAdapter.html#getView(int,%20android.view.View,%20android.view.ViewGroup))
///
/// Required features: "android-view-View", "android-view-ViewGroup"
#[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
pub fn getView<'env>(&'env self, arg0: i32, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::view::View>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getView", .descriptor == "(ILandroid/view/View;Landroid/view/ViewGroup;)Landroid/view/View;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getView\0", "(ILandroid/view/View;Landroid/view/ViewGroup;)Landroid/view/View;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getDropDownView](https://developer.android.com/reference/android/widget/CursorAdapter.html#getDropDownView(int,%20android.view.View,%20android.view.ViewGroup))
///
/// Required features: "android-view-View", "android-view-ViewGroup"
#[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
pub fn getDropDownView<'env>(&'env self, arg0: i32, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::view::View>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getDropDownView", .descriptor == "(ILandroid/view/View;Landroid/view/ViewGroup;)Landroid/view/View;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getDropDownView\0", "(ILandroid/view/View;Landroid/view/ViewGroup;)Landroid/view/View;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [newView](https://developer.android.com/reference/android/widget/CursorAdapter.html#newView(android.content.Context,%20android.database.Cursor,%20android.view.ViewGroup))
///
/// Required features: "android-content-Context", "android-database-Cursor", "android-view-View", "android-view-ViewGroup"
#[cfg(any(feature = "all", all(feature = "android-content-Context", feature = "android-database-Cursor", feature = "android-view-View", feature = "android-view-ViewGroup")))]
pub fn newView<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::database::Cursor>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::view::View>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC | ABSTRACT, .name == "newView", .descriptor == "(Landroid/content/Context;Landroid/database/Cursor;Landroid/view/ViewGroup;)Landroid/view/View;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "newView\0", "(Landroid/content/Context;Landroid/database/Cursor;Landroid/view/ViewGroup;)Landroid/view/View;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [newDropDownView](https://developer.android.com/reference/android/widget/CursorAdapter.html#newDropDownView(android.content.Context,%20android.database.Cursor,%20android.view.ViewGroup))
///
/// Required features: "android-content-Context", "android-database-Cursor", "android-view-View", "android-view-ViewGroup"
#[cfg(any(feature = "all", all(feature = "android-content-Context", feature = "android-database-Cursor", feature = "android-view-View", feature = "android-view-ViewGroup")))]
pub fn newDropDownView<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::database::Cursor>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::view::View>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "newDropDownView", .descriptor == "(Landroid/content/Context;Landroid/database/Cursor;Landroid/view/ViewGroup;)Landroid/view/View;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "newDropDownView\0", "(Landroid/content/Context;Landroid/database/Cursor;Landroid/view/ViewGroup;)Landroid/view/View;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [bindView](https://developer.android.com/reference/android/widget/CursorAdapter.html#bindView(android.view.View,%20android.content.Context,%20android.database.Cursor))
///
/// Required features: "android-content-Context", "android-database-Cursor", "android-view-View"
#[cfg(any(feature = "all", all(feature = "android-content-Context", feature = "android-database-Cursor", feature = "android-view-View")))]
pub fn bindView<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::database::Cursor>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC | ABSTRACT, .name == "bindView", .descriptor == "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "bindView\0", "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [changeCursor](https://developer.android.com/reference/android/widget/CursorAdapter.html#changeCursor(android.database.Cursor))
///
/// Required features: "android-database-Cursor"
#[cfg(any(feature = "all", all(feature = "android-database-Cursor")))]
pub fn changeCursor<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::database::Cursor>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "changeCursor", .descriptor == "(Landroid/database/Cursor;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "changeCursor\0", "(Landroid/database/Cursor;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [convertToString](https://developer.android.com/reference/android/widget/CursorAdapter.html#convertToString(android.database.Cursor))
///
/// Required features: "android-database-Cursor", "java-lang-CharSequence"
#[cfg(any(feature = "all", all(feature = "android-database-Cursor", feature = "java-lang-CharSequence")))]
pub fn convertToString<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::database::Cursor>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::CharSequence>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "convertToString", .descriptor == "(Landroid/database/Cursor;)Ljava/lang/CharSequence;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "convertToString\0", "(Landroid/database/Cursor;)Ljava/lang/CharSequence;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [runQueryOnBackgroundThread](https://developer.android.com/reference/android/widget/CursorAdapter.html#runQueryOnBackgroundThread(java.lang.CharSequence))
///
/// Required features: "android-database-Cursor", "java-lang-CharSequence"
#[cfg(any(feature = "all", all(feature = "android-database-Cursor", feature = "java-lang-CharSequence")))]
pub fn runQueryOnBackgroundThread<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::CharSequence>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::database::Cursor>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "runQueryOnBackgroundThread", .descriptor == "(Ljava/lang/CharSequence;)Landroid/database/Cursor;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "runQueryOnBackgroundThread\0", "(Ljava/lang/CharSequence;)Landroid/database/Cursor;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getFilter](https://developer.android.com/reference/android/widget/CursorAdapter.html#getFilter())
///
/// Required features: "android-widget-Filter"
#[cfg(any(feature = "all", all(feature = "android-widget-Filter")))]
pub fn getFilter<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::widget::Filter>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getFilter", .descriptor == "()Landroid/widget/Filter;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getFilter\0", "()Landroid/widget/Filter;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getFilterQueryProvider](https://developer.android.com/reference/android/widget/CursorAdapter.html#getFilterQueryProvider())
///
/// Required features: "android-widget-FilterQueryProvider"
#[cfg(any(feature = "all", all(feature = "android-widget-FilterQueryProvider")))]
pub fn getFilterQueryProvider<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::widget::FilterQueryProvider>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "getFilterQueryProvider", .descriptor == "()Landroid/widget/FilterQueryProvider;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "getFilterQueryProvider\0", "()Landroid/widget/FilterQueryProvider;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [setFilterQueryProvider](https://developer.android.com/reference/android/widget/CursorAdapter.html#setFilterQueryProvider(android.widget.FilterQueryProvider))
///
/// Required features: "android-widget-FilterQueryProvider"
#[cfg(any(feature = "all", all(feature = "android-widget-FilterQueryProvider")))]
pub fn setFilterQueryProvider<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::widget::FilterQueryProvider>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/widget/CursorAdapter", java.flags == PUBLIC, .name == "setFilterQueryProvider", .descriptor == "(Landroid/widget/FilterQueryProvider;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/widget/CursorAdapter\0", "setFilterQueryProvider\0", "(Landroid/widget/FilterQueryProvider;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
}
}