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
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


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

        /// [getNamedItem](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#getNamedItem(java.lang.String))
        ///
        /// Required features: "java-lang-String", "org-w3c-dom-Node"
        #[cfg(any(feature = "all", all(feature = "java-lang-String", feature = "org-w3c-dom-Node")))]
        pub fn getNamedItem<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::org::w3c::dom::Node>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "getNamedItem", .descriptor == "(Ljava/lang/String;)Lorg/w3c/dom/Node;"
            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("org/w3c/dom/NamedNodeMap\0", "getNamedItem\0", "(Ljava/lang/String;)Lorg/w3c/dom/Node;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setNamedItem](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#setNamedItem(org.w3c.dom.Node))
        ///
        /// Required features: "org-w3c-dom-Node"
        #[cfg(any(feature = "all", all(feature = "org-w3c-dom-Node")))]
        pub fn setNamedItem<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::org::w3c::dom::Node>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::org::w3c::dom::Node>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "setNamedItem", .descriptor == "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;"
            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("org/w3c/dom/NamedNodeMap\0", "setNamedItem\0", "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [removeNamedItem](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#removeNamedItem(java.lang.String))
        ///
        /// Required features: "java-lang-String", "org-w3c-dom-Node"
        #[cfg(any(feature = "all", all(feature = "java-lang-String", feature = "org-w3c-dom-Node")))]
        pub fn removeNamedItem<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::org::w3c::dom::Node>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "removeNamedItem", .descriptor == "(Ljava/lang/String;)Lorg/w3c/dom/Node;"
            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("org/w3c/dom/NamedNodeMap\0", "removeNamedItem\0", "(Ljava/lang/String;)Lorg/w3c/dom/Node;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [item](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#item(int))
        ///
        /// Required features: "org-w3c-dom-Node"
        #[cfg(any(feature = "all", all(feature = "org-w3c-dom-Node")))]
        pub fn item<'env>(&'env self, arg0: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::org::w3c::dom::Node>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "item", .descriptor == "(I)Lorg/w3c/dom/Node;"
            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("org/w3c/dom/NamedNodeMap\0", "item\0", "(I)Lorg/w3c/dom/Node;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getLength](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#getLength())
        pub fn getLength<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "getLength", .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("org/w3c/dom/NamedNodeMap\0", "getLength\0", "()I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getNamedItemNS](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#getNamedItemNS(java.lang.String,%20java.lang.String))
        ///
        /// Required features: "java-lang-String", "org-w3c-dom-Node"
        #[cfg(any(feature = "all", all(feature = "java-lang-String", feature = "org-w3c-dom-Node")))]
        pub fn getNamedItemNS<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::org::w3c::dom::Node>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "getNamedItemNS", .descriptor == "(Ljava/lang/String;Ljava/lang/String;)Lorg/w3c/dom/Node;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("org/w3c/dom/NamedNodeMap\0", "getNamedItemNS\0", "(Ljava/lang/String;Ljava/lang/String;)Lorg/w3c/dom/Node;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setNamedItemNS](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#setNamedItemNS(org.w3c.dom.Node))
        ///
        /// Required features: "org-w3c-dom-Node"
        #[cfg(any(feature = "all", all(feature = "org-w3c-dom-Node")))]
        pub fn setNamedItemNS<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::org::w3c::dom::Node>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::org::w3c::dom::Node>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "setNamedItemNS", .descriptor == "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;"
            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("org/w3c/dom/NamedNodeMap\0", "setNamedItemNS\0", "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [removeNamedItemNS](https://developer.android.com/reference/org/w3c/dom/NamedNodeMap.html#removeNamedItemNS(java.lang.String,%20java.lang.String))
        ///
        /// Required features: "java-lang-String", "org-w3c-dom-Node"
        #[cfg(any(feature = "all", all(feature = "java-lang-String", feature = "org-w3c-dom-Node")))]
        pub fn removeNamedItemNS<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::org::w3c::dom::Node>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "org/w3c/dom/NamedNodeMap", java.flags == PUBLIC | ABSTRACT, .name == "removeNamedItemNS", .descriptor == "(Ljava/lang/String;Ljava/lang/String;)Lorg/w3c/dom/Node;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("org/w3c/dom/NamedNodeMap\0", "removeNamedItemNS\0", "(Ljava/lang/String;Ljava/lang/String;)Lorg/w3c/dom/Node;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }
    }
}