Get the namespace field
(&self, env: &mut JNIEnv<'a>)
| 91 | |
| 92 | /// Get the namespace field |
| 93 | pub fn get_namespace(&self, env: &mut JNIEnv<'a>) -> Result<List<'a, JString<'a>>> { |
| 94 | let v = env.call_method(&self.obj, "getNamespace", "()Ljava/util/List;", &[])?; |
| 95 | List::cast_unchecked(get_object_ref(v)?, env) |
| 96 | } |
| 97 | |
| 98 | /// Get the basename field |
| 99 | pub fn get_basename(&self, env: &mut JNIEnv<'a>) -> Result<JString<'a>> { |
nothing calls this directly
no test coverage detected