diff --git a/pkgs/jnigen/CHANGELOG.md b/pkgs/jnigen/CHANGELOG.md index 3c074d4aa..d6d7ee1a0 100644 --- a/pkgs/jnigen/CHANGELOG.md +++ b/pkgs/jnigen/CHANGELOG.md @@ -2,8 +2,9 @@ - **Breaking Change**([#1644](https://github.com/dart-lang/native/issues/1644)): Generate null-safe Dart bindings for Java and Kotlin. -- Add a simple AST and update `excluder.dart` to support user-defined exclusions for classes, methods, and fields. - +- Fixed a potential name collision when generating in multi-file mode. +- Added the ability to add user-defined visitors to config. Currently only + capable of excluding classes, methods, and fields. ## 0.12.2 diff --git a/pkgs/jnigen/example/in_app_java/lib/android_utils.dart b/pkgs/jnigen/example/in_app_java/lib/android_utils.dart index 62bc1d88d..0a94169a3 100644 --- a/pkgs/jnigen/example/in_app_java/lib/android_utils.dart +++ b/pkgs/jnigen/example/in_app_java/lib/android_utils.dart @@ -30,25 +30,25 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; /// from: `com.example.in_app_java.R$drawable` -class R_drawable extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class R_drawable extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal R_drawable.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/example/in_app_java/R$drawable'); + jni$_.JClass.forName(r'com/example/in_app_java/R$drawable'); /// The type which includes information such as the signature of this class. static const nullableType = $R_drawable$NullableType(); @@ -60,100 +60,100 @@ class R_drawable extends _$jni.JObject { /// from: `static public int launch_background` static int get launch_background => - _id_launch_background.get(_class, const _$jni.jintType()); + _id_launch_background.get(_class, const jni$_.jintType()); /// from: `static public int launch_background` static set launch_background(int value) => - _id_launch_background.set(_class, const _$jni.jintType(), value); + _id_launch_background.set(_class, const jni$_.jintType(), value); } -final class $R_drawable$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $R_drawable$NullableType extends jni$_.JObjType { + @jni$_.internal const $R_drawable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R$drawable;'; - @_$jni.internal - @_$core.override - R_drawable? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + R_drawable? fromReference(jni$_.JReference reference) => reference.isNull ? null : R_drawable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R_drawable$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R_drawable$NullableType) && other is $R_drawable$NullableType; } } -final class $R_drawable$Type extends _$jni.JObjType { - @_$jni.internal +final class $R_drawable$Type extends jni$_.JObjType { + @jni$_.internal const $R_drawable$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R$drawable;'; - @_$jni.internal - @_$core.override - R_drawable fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + R_drawable fromReference(jni$_.JReference reference) => R_drawable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $R_drawable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R_drawable$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R_drawable$Type) && other is $R_drawable$Type; } } /// from: `com.example.in_app_java.R$mipmap` -class R_mipmap extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class R_mipmap extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal R_mipmap.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/example/in_app_java/R$mipmap'); + jni$_.JClass.forName(r'com/example/in_app_java/R$mipmap'); /// The type which includes information such as the signature of this class. static const nullableType = $R_mipmap$NullableType(); @@ -165,98 +165,98 @@ class R_mipmap extends _$jni.JObject { /// from: `static public int ic_launcher` static int get ic_launcher => - _id_ic_launcher.get(_class, const _$jni.jintType()); + _id_ic_launcher.get(_class, const jni$_.jintType()); /// from: `static public int ic_launcher` static set ic_launcher(int value) => - _id_ic_launcher.set(_class, const _$jni.jintType(), value); + _id_ic_launcher.set(_class, const jni$_.jintType(), value); } -final class $R_mipmap$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $R_mipmap$NullableType extends jni$_.JObjType { + @jni$_.internal const $R_mipmap$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R$mipmap;'; - @_$jni.internal - @_$core.override - R_mipmap? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + R_mipmap? fromReference(jni$_.JReference reference) => reference.isNull ? null : R_mipmap.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R_mipmap$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R_mipmap$NullableType) && other is $R_mipmap$NullableType; } } -final class $R_mipmap$Type extends _$jni.JObjType { - @_$jni.internal +final class $R_mipmap$Type extends jni$_.JObjType { + @jni$_.internal const $R_mipmap$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R$mipmap;'; - @_$jni.internal - @_$core.override - R_mipmap fromReference(_$jni.JReference reference) => R_mipmap.fromReference( + @jni$_.internal + @core$_.override + R_mipmap fromReference(jni$_.JReference reference) => R_mipmap.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $R_mipmap$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $R_mipmap$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R_mipmap$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R_mipmap$Type) && other is $R_mipmap$Type; } } /// from: `com.example.in_app_java.R$style` -class R_style extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class R_style extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal R_style.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/example/in_app_java/R$style'); + jni$_.JClass.forName(r'com/example/in_app_java/R$style'); /// The type which includes information such as the signature of this class. static const nullableType = $R_style$NullableType(); @@ -268,11 +268,11 @@ class R_style extends _$jni.JObject { /// from: `static public int LaunchTheme` static int get LaunchTheme => - _id_LaunchTheme.get(_class, const _$jni.jintType()); + _id_LaunchTheme.get(_class, const jni$_.jintType()); /// from: `static public int LaunchTheme` static set LaunchTheme(int value) => - _id_LaunchTheme.set(_class, const _$jni.jintType(), value); + _id_LaunchTheme.set(_class, const jni$_.jintType(), value); static final _id_NormalTheme = _class.staticFieldId( r'NormalTheme', @@ -281,186 +281,186 @@ class R_style extends _$jni.JObject { /// from: `static public int NormalTheme` static int get NormalTheme => - _id_NormalTheme.get(_class, const _$jni.jintType()); + _id_NormalTheme.get(_class, const jni$_.jintType()); /// from: `static public int NormalTheme` static set NormalTheme(int value) => - _id_NormalTheme.set(_class, const _$jni.jintType(), value); + _id_NormalTheme.set(_class, const jni$_.jintType(), value); } -final class $R_style$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $R_style$NullableType extends jni$_.JObjType { + @jni$_.internal const $R_style$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R$style;'; - @_$jni.internal - @_$core.override - R_style? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + R_style? fromReference(jni$_.JReference reference) => reference.isNull ? null : R_style.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R_style$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R_style$NullableType) && other is $R_style$NullableType; } } -final class $R_style$Type extends _$jni.JObjType { - @_$jni.internal +final class $R_style$Type extends jni$_.JObjType { + @jni$_.internal const $R_style$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R$style;'; - @_$jni.internal - @_$core.override - R_style fromReference(_$jni.JReference reference) => R_style.fromReference( + @jni$_.internal + @core$_.override + R_style fromReference(jni$_.JReference reference) => R_style.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $R_style$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $R_style$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R_style$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R_style$Type) && other is $R_style$Type; } } /// from: `com.example.in_app_java.R` -class R extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class R extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal R.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName(r'com/example/in_app_java/R'); + static final _class = jni$_.JClass.forName(r'com/example/in_app_java/R'); /// The type which includes information such as the signature of this class. static const nullableType = $R$NullableType(); static const type = $R$Type(); } -final class $R$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $R$NullableType extends jni$_.JObjType { + @jni$_.internal const $R$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R;'; - @_$jni.internal - @_$core.override - R? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + R? fromReference(jni$_.JReference reference) => reference.isNull ? null : R.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R$NullableType) && other is $R$NullableType; } } -final class $R$Type extends _$jni.JObjType { - @_$jni.internal +final class $R$Type extends jni$_.JObjType { + @jni$_.internal const $R$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/R;'; - @_$jni.internal - @_$core.override - R fromReference(_$jni.JReference reference) => R.fromReference( + @jni$_.internal + @core$_.override + R fromReference(jni$_.JReference reference) => R.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $R$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $R$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($R$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($R$Type) && other is $R$Type; } } /// from: `androidx.emoji2.text.EmojiCompat$CodepointSequenceMatchResult` -class EmojiCompat_CodepointSequenceMatchResult extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_CodepointSequenceMatchResult extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_CodepointSequenceMatchResult.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/EmojiCompat$CodepointSequenceMatchResult'); /// The type which includes information such as the signature of this class. @@ -469,16 +469,16 @@ class EmojiCompat_CodepointSequenceMatchResult extends _$jni.JObject { static const type = $EmojiCompat_CodepointSequenceMatchResult$Type(); /// Maps a specific port to the implemented interface. - static final _$core.Map + static final core$_.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -486,39 +486,39 @@ class EmojiCompat_CodepointSequenceMatchResult extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $EmojiCompat_CodepointSequenceMatchResult $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'androidx.emoji2.text.EmojiCompat$CodepointSequenceMatchResult', @@ -533,7 +533,7 @@ class EmojiCompat_CodepointSequenceMatchResult extends _$jni.JObject { factory EmojiCompat_CodepointSequenceMatchResult.implement( $EmojiCompat_CodepointSequenceMatchResult $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return EmojiCompat_CodepointSequenceMatchResult.fromReference( $i.implementReference(), @@ -552,42 +552,42 @@ final class _$EmojiCompat_CodepointSequenceMatchResult } final class $EmojiCompat_CodepointSequenceMatchResult$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_CodepointSequenceMatchResult$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$CodepointSequenceMatchResult;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override EmojiCompat_CodepointSequenceMatchResult? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_CodepointSequenceMatchResult.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_CodepointSequenceMatchResult$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_CodepointSequenceMatchResult$NullableType) && @@ -596,39 +596,39 @@ final class $EmojiCompat_CodepointSequenceMatchResult$NullableType } final class $EmojiCompat_CodepointSequenceMatchResult$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_CodepointSequenceMatchResult$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$CodepointSequenceMatchResult;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override EmojiCompat_CodepointSequenceMatchResult fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => EmojiCompat_CodepointSequenceMatchResult.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_CodepointSequenceMatchResult$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_CodepointSequenceMatchResult$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_CodepointSequenceMatchResult$Type) && @@ -637,19 +637,19 @@ final class $EmojiCompat_CodepointSequenceMatchResult$Type } /// from: `androidx.emoji2.text.EmojiCompat$Config` -class EmojiCompat_Config extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_Config extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_Config.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/EmojiCompat$Config'); + jni$_.JClass.forName(r'androidx/emoji2/text/EmojiCompat$Config'); /// The type which includes information such as the signature of this class. static const nullableType = $EmojiCompat_Config$NullableType(); @@ -659,26 +659,26 @@ class EmojiCompat_Config extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$InitCallback;)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _registerInitCallback = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _registerInitCallback = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config registerInitCallback(androidx.emoji2.text.EmojiCompat$InitCallback initCallback)` /// The returned object must be released after use, by calling the [release] method. EmojiCompat_Config? registerInitCallback( EmojiCompat_InitCallback? initCallback, ) { - final _$initCallback = initCallback?.reference ?? _$jni.jNullReference; + final _$initCallback = initCallback?.reference ?? jni$_.jNullReference; return _registerInitCallback( reference.pointer, - _id_registerInitCallback as _$jni.JMethodIDPtr, + _id_registerInitCallback as jni$_.JMethodIDPtr, _$initCallback.pointer) .object(const $EmojiCompat_Config$NullableType()); } @@ -688,26 +688,26 @@ class EmojiCompat_Config extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$InitCallback;)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _unregisterInitCallback = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _unregisterInitCallback = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config unregisterInitCallback(androidx.emoji2.text.EmojiCompat$InitCallback initCallback)` /// The returned object must be released after use, by calling the [release] method. EmojiCompat_Config? unregisterInitCallback( EmojiCompat_InitCallback? initCallback, ) { - final _$initCallback = initCallback?.reference ?? _$jni.jNullReference; + final _$initCallback = initCallback?.reference ?? jni$_.jNullReference; return _unregisterInitCallback( reference.pointer, - _id_unregisterInitCallback as _$jni.JMethodIDPtr, + _id_unregisterInitCallback as jni$_.JMethodIDPtr, _$initCallback.pointer) .object(const $EmojiCompat_Config$NullableType()); } @@ -717,15 +717,15 @@ class EmojiCompat_Config extends _$jni.JObject { r'(Z)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _setReplaceAll = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _setReplaceAll = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setReplaceAll(boolean z)` /// The returned object must be released after use, by calling the [release] method. @@ -733,7 +733,7 @@ class EmojiCompat_Config extends _$jni.JObject { bool z, ) { return _setReplaceAll(reference.pointer, - _id_setReplaceAll as _$jni.JMethodIDPtr, z ? 1 : 0) + _id_setReplaceAll as jni$_.JMethodIDPtr, z ? 1 : 0) .object(const $EmojiCompat_Config$NullableType()); } @@ -742,15 +742,15 @@ class EmojiCompat_Config extends _$jni.JObject { r'(Z)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _setUseEmojiAsDefaultStyle = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _setUseEmojiAsDefaultStyle = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setUseEmojiAsDefaultStyle(boolean z)` /// The returned object must be released after use, by calling the [release] method. @@ -758,7 +758,7 @@ class EmojiCompat_Config extends _$jni.JObject { bool z, ) { return _setUseEmojiAsDefaultStyle(reference.pointer, - _id_setUseEmojiAsDefaultStyle as _$jni.JMethodIDPtr, z ? 1 : 0) + _id_setUseEmojiAsDefaultStyle as jni$_.JMethodIDPtr, z ? 1 : 0) .object(const $EmojiCompat_Config$NullableType()); } @@ -768,30 +768,30 @@ class EmojiCompat_Config extends _$jni.JObject { ); static final _setUseEmojiAsDefaultStyle$1 = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Pointer<_$jni.Void> + jni$_.Int32, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, jni$_.Pointer)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setUseEmojiAsDefaultStyle(boolean z, java.util.List list)` /// The returned object must be released after use, by calling the [release] method. EmojiCompat_Config? setUseEmojiAsDefaultStyle$1( bool z, - _$jni.JList<_$jni.JInteger?>? list, + jni$_.JList? list, ) { - final _$list = list?.reference ?? _$jni.jNullReference; + final _$list = list?.reference ?? jni$_.jNullReference; return _setUseEmojiAsDefaultStyle$1( reference.pointer, - _id_setUseEmojiAsDefaultStyle$1 as _$jni.JMethodIDPtr, + _id_setUseEmojiAsDefaultStyle$1 as jni$_.JMethodIDPtr, z ? 1 : 0, _$list.pointer) .object(const $EmojiCompat_Config$NullableType()); @@ -803,14 +803,14 @@ class EmojiCompat_Config extends _$jni.JObject { ); static final _setEmojiSpanIndicatorEnabled = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setEmojiSpanIndicatorEnabled(boolean z)` /// The returned object must be released after use, by calling the [release] method. @@ -818,7 +818,7 @@ class EmojiCompat_Config extends _$jni.JObject { bool z, ) { return _setEmojiSpanIndicatorEnabled(reference.pointer, - _id_setEmojiSpanIndicatorEnabled as _$jni.JMethodIDPtr, z ? 1 : 0) + _id_setEmojiSpanIndicatorEnabled as jni$_.JMethodIDPtr, z ? 1 : 0) .object(const $EmojiCompat_Config$NullableType()); } @@ -828,14 +828,14 @@ class EmojiCompat_Config extends _$jni.JObject { ); static final _setEmojiSpanIndicatorColor = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setEmojiSpanIndicatorColor(int i)` /// The returned object must be released after use, by calling the [release] method. @@ -843,7 +843,7 @@ class EmojiCompat_Config extends _$jni.JObject { int i, ) { return _setEmojiSpanIndicatorColor(reference.pointer, - _id_setEmojiSpanIndicatorColor as _$jni.JMethodIDPtr, i) + _id_setEmojiSpanIndicatorColor as jni$_.JMethodIDPtr, i) .object(const $EmojiCompat_Config$NullableType()); } @@ -852,15 +852,15 @@ class EmojiCompat_Config extends _$jni.JObject { r'(I)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _setMetadataLoadStrategy = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _setMetadataLoadStrategy = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setMetadataLoadStrategy(int i)` /// The returned object must be released after use, by calling the [release] method. @@ -868,7 +868,7 @@ class EmojiCompat_Config extends _$jni.JObject { int i, ) { return _setMetadataLoadStrategy(reference.pointer, - _id_setMetadataLoadStrategy as _$jni.JMethodIDPtr, i) + _id_setMetadataLoadStrategy as jni$_.JMethodIDPtr, i) .object(const $EmojiCompat_Config$NullableType()); } @@ -877,25 +877,25 @@ class EmojiCompat_Config extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$SpanFactory;)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _setSpanFactory = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setSpanFactory = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setSpanFactory(androidx.emoji2.text.EmojiCompat$SpanFactory spanFactory)` /// The returned object must be released after use, by calling the [release] method. EmojiCompat_Config? setSpanFactory( EmojiCompat_SpanFactory? spanFactory, ) { - final _$spanFactory = spanFactory?.reference ?? _$jni.jNullReference; + final _$spanFactory = spanFactory?.reference ?? jni$_.jNullReference; return _setSpanFactory(reference.pointer, - _id_setSpanFactory as _$jni.JMethodIDPtr, _$spanFactory.pointer) + _id_setSpanFactory as jni$_.JMethodIDPtr, _$spanFactory.pointer) .object(const $EmojiCompat_Config$NullableType()); } @@ -904,62 +904,62 @@ class EmojiCompat_Config extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$GlyphChecker;)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _setGlyphChecker = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setGlyphChecker = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config setGlyphChecker(androidx.emoji2.text.EmojiCompat$GlyphChecker glyphChecker)` /// The returned object must be released after use, by calling the [release] method. EmojiCompat_Config? setGlyphChecker( EmojiCompat_GlyphChecker? glyphChecker, ) { - final _$glyphChecker = glyphChecker?.reference ?? _$jni.jNullReference; + final _$glyphChecker = glyphChecker?.reference ?? jni$_.jNullReference; return _setGlyphChecker(reference.pointer, - _id_setGlyphChecker as _$jni.JMethodIDPtr, _$glyphChecker.pointer) + _id_setGlyphChecker as jni$_.JMethodIDPtr, _$glyphChecker.pointer) .object(const $EmojiCompat_Config$NullableType()); } } final class $EmojiCompat_Config$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_Config$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$Config;'; - @_$jni.internal - @_$core.override - EmojiCompat_Config? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_Config? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_Config.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_Config$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_Config$NullableType) && other is $EmojiCompat_Config$NullableType; @@ -967,37 +967,37 @@ final class $EmojiCompat_Config$NullableType } final class $EmojiCompat_Config$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_Config$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$Config;'; - @_$jni.internal - @_$core.override - EmojiCompat_Config fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_Config fromReference(jni$_.JReference reference) => EmojiCompat_Config.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_Config$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_Config$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_Config$Type) && other is $EmojiCompat_Config$Type; @@ -1005,18 +1005,18 @@ final class $EmojiCompat_Config$Type } /// from: `androidx.emoji2.text.EmojiCompat$DefaultSpanFactory` -class EmojiCompat_DefaultSpanFactory extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_DefaultSpanFactory extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_DefaultSpanFactory.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/EmojiCompat$DefaultSpanFactory'); /// The type which includes information such as the signature of this class. @@ -1026,23 +1026,23 @@ class EmojiCompat_DefaultSpanFactory extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory EmojiCompat_DefaultSpanFactory() { return EmojiCompat_DefaultSpanFactory.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -1051,64 +1051,64 @@ class EmojiCompat_DefaultSpanFactory extends _$jni.JObject { r'(Landroidx/emoji2/text/TypefaceEmojiRasterizer;)Landroidx/emoji2/text/EmojiSpan;', ); - static final _createSpan = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createSpan = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public androidx.emoji2.text.EmojiSpan createSpan(androidx.emoji2.text.TypefaceEmojiRasterizer typefaceEmojiRasterizer)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? createSpan( - _$jni.JObject? typefaceEmojiRasterizer, + jni$_.JObject? createSpan( + jni$_.JObject? typefaceEmojiRasterizer, ) { final _$typefaceEmojiRasterizer = - typefaceEmojiRasterizer?.reference ?? _$jni.jNullReference; - return _createSpan(reference.pointer, _id_createSpan as _$jni.JMethodIDPtr, + typefaceEmojiRasterizer?.reference ?? jni$_.jNullReference; + return _createSpan(reference.pointer, _id_createSpan as jni$_.JMethodIDPtr, _$typefaceEmojiRasterizer.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } } final class $EmojiCompat_DefaultSpanFactory$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_DefaultSpanFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$DefaultSpanFactory;'; - @_$jni.internal - @_$core.override - EmojiCompat_DefaultSpanFactory? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_DefaultSpanFactory? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_DefaultSpanFactory.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_DefaultSpanFactory$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_DefaultSpanFactory$NullableType) && @@ -1117,38 +1117,38 @@ final class $EmojiCompat_DefaultSpanFactory$NullableType } final class $EmojiCompat_DefaultSpanFactory$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_DefaultSpanFactory$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$DefaultSpanFactory;'; - @_$jni.internal - @_$core.override - EmojiCompat_DefaultSpanFactory fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_DefaultSpanFactory fromReference(jni$_.JReference reference) => EmojiCompat_DefaultSpanFactory.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_DefaultSpanFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_DefaultSpanFactory$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_DefaultSpanFactory$Type) && other is $EmojiCompat_DefaultSpanFactory$Type; @@ -1156,19 +1156,19 @@ final class $EmojiCompat_DefaultSpanFactory$Type } /// from: `androidx.emoji2.text.EmojiCompat$GlyphChecker` -class EmojiCompat_GlyphChecker extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_GlyphChecker extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_GlyphChecker.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/EmojiCompat$GlyphChecker'); + jni$_.JClass.forName(r'androidx/emoji2/text/EmojiCompat$GlyphChecker'); /// The type which includes information such as the signature of this class. static const nullableType = $EmojiCompat_GlyphChecker$NullableType(); @@ -1178,45 +1178,45 @@ class EmojiCompat_GlyphChecker extends _$jni.JObject { r'(Ljava/lang/CharSequence;III)Z', ); - static final _hasGlyph = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _hasGlyph = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int, int, int)>(); /// from: `public abstract boolean hasGlyph(java.lang.CharSequence charSequence, int i, int i1, int i2)` bool hasGlyph( - _$jni.JObject? charSequence, + jni$_.JObject? charSequence, int i, int i1, int i2, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; - return _hasGlyph(reference.pointer, _id_hasGlyph as _$jni.JMethodIDPtr, + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; + return _hasGlyph(reference.pointer, _id_hasGlyph as jni$_.JMethodIDPtr, _$charSequence.pointer, i, i1, i2) .boolean; } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -1224,54 +1224,54 @@ class EmojiCompat_GlyphChecker extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; if ($d == r'hasGlyph(Ljava/lang/CharSequence;III)Z') { final $r = _$impls[$p]!.hasGlyph( - $a![0]?.as(const _$jni.JObjectType(), releaseOriginal: true), + $a![0]?.as(const jni$_.JObjectType(), releaseOriginal: true), $a![1]! - .as(const _$jni.JIntegerType(), releaseOriginal: true) + .as(const jni$_.JIntegerType(), releaseOriginal: true) .intValue(releaseOriginal: true), $a![2]! - .as(const _$jni.JIntegerType(), releaseOriginal: true) + .as(const jni$_.JIntegerType(), releaseOriginal: true) .intValue(releaseOriginal: true), $a![3]! - .as(const _$jni.JIntegerType(), releaseOriginal: true) + .as(const jni$_.JIntegerType(), releaseOriginal: true) .intValue(releaseOriginal: true), ); - return _$jni.JBoolean($r).reference.toPointer(); + return jni$_.JBoolean($r).reference.toPointer(); } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $EmojiCompat_GlyphChecker $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'androidx.emoji2.text.EmojiCompat$GlyphChecker', @@ -1286,7 +1286,7 @@ class EmojiCompat_GlyphChecker extends _$jni.JObject { factory EmojiCompat_GlyphChecker.implement( $EmojiCompat_GlyphChecker $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return EmojiCompat_GlyphChecker.fromReference( $i.implementReference(), @@ -1296,60 +1296,60 @@ class EmojiCompat_GlyphChecker extends _$jni.JObject { abstract base mixin class $EmojiCompat_GlyphChecker { factory $EmojiCompat_GlyphChecker({ - required bool Function(_$jni.JObject? charSequence, int i, int i1, int i2) + required bool Function(jni$_.JObject? charSequence, int i, int i1, int i2) hasGlyph, }) = _$EmojiCompat_GlyphChecker; - bool hasGlyph(_$jni.JObject? charSequence, int i, int i1, int i2); + bool hasGlyph(jni$_.JObject? charSequence, int i, int i1, int i2); } final class _$EmojiCompat_GlyphChecker with $EmojiCompat_GlyphChecker { _$EmojiCompat_GlyphChecker({ - required bool Function(_$jni.JObject? charSequence, int i, int i1, int i2) + required bool Function(jni$_.JObject? charSequence, int i, int i1, int i2) hasGlyph, }) : _hasGlyph = hasGlyph; - final bool Function(_$jni.JObject? charSequence, int i, int i1, int i2) + final bool Function(jni$_.JObject? charSequence, int i, int i1, int i2) _hasGlyph; - bool hasGlyph(_$jni.JObject? charSequence, int i, int i1, int i2) { + bool hasGlyph(jni$_.JObject? charSequence, int i, int i1, int i2) { return _hasGlyph(charSequence, i, i1, i2); } } final class $EmojiCompat_GlyphChecker$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_GlyphChecker$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$GlyphChecker;'; - @_$jni.internal - @_$core.override - EmojiCompat_GlyphChecker? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_GlyphChecker? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_GlyphChecker.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_GlyphChecker$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_GlyphChecker$NullableType) && other is $EmojiCompat_GlyphChecker$NullableType; @@ -1357,37 +1357,37 @@ final class $EmojiCompat_GlyphChecker$NullableType } final class $EmojiCompat_GlyphChecker$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_GlyphChecker$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$GlyphChecker;'; - @_$jni.internal - @_$core.override - EmojiCompat_GlyphChecker fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_GlyphChecker fromReference(jni$_.JReference reference) => EmojiCompat_GlyphChecker.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_GlyphChecker$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_GlyphChecker$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_GlyphChecker$Type) && other is $EmojiCompat_GlyphChecker$Type; @@ -1395,19 +1395,19 @@ final class $EmojiCompat_GlyphChecker$Type } /// from: `androidx.emoji2.text.EmojiCompat$InitCallback` -class EmojiCompat_InitCallback extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_InitCallback extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_InitCallback.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/EmojiCompat$InitCallback'); + jni$_.JClass.forName(r'androidx/emoji2/text/EmojiCompat$InitCallback'); /// The type which includes information such as the signature of this class. static const nullableType = $EmojiCompat_InitCallback$NullableType(); @@ -1417,21 +1417,21 @@ class EmojiCompat_InitCallback extends _$jni.JObject { r'()V', ); - static final _onInitialized = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _onInitialized = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void onInitialized()` void onInitialized() { - _onInitialized(reference.pointer, _id_onInitialized as _$jni.JMethodIDPtr) + _onInitialized(reference.pointer, _id_onInitialized as jni$_.JMethodIDPtr) .check(); } @@ -1440,61 +1440,61 @@ class EmojiCompat_InitCallback extends _$jni.JObject { r'(Ljava/lang/Throwable;)V', ); - static final _onFailed = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _onFailed = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void onFailed(java.lang.Throwable throwable)` void onFailed( - _$jni.JObject? throwable, + jni$_.JObject? throwable, ) { - final _$throwable = throwable?.reference ?? _$jni.jNullReference; - _onFailed(reference.pointer, _id_onFailed as _$jni.JMethodIDPtr, + final _$throwable = throwable?.reference ?? jni$_.jNullReference; + _onFailed(reference.pointer, _id_onFailed as jni$_.JMethodIDPtr, _$throwable.pointer) .check(); } } final class $EmojiCompat_InitCallback$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_InitCallback$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$InitCallback;'; - @_$jni.internal - @_$core.override - EmojiCompat_InitCallback? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_InitCallback? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_InitCallback.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_InitCallback$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_InitCallback$NullableType) && other is $EmojiCompat_InitCallback$NullableType; @@ -1502,37 +1502,37 @@ final class $EmojiCompat_InitCallback$NullableType } final class $EmojiCompat_InitCallback$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_InitCallback$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$InitCallback;'; - @_$jni.internal - @_$core.override - EmojiCompat_InitCallback fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_InitCallback fromReference(jni$_.JReference reference) => EmojiCompat_InitCallback.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_InitCallback$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_InitCallback$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_InitCallback$Type) && other is $EmojiCompat_InitCallback$Type; @@ -1540,34 +1540,34 @@ final class $EmojiCompat_InitCallback$Type } /// from: `androidx.emoji2.text.EmojiCompat$LoadStrategy` -class EmojiCompat_LoadStrategy extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_LoadStrategy extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_LoadStrategy.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/EmojiCompat$LoadStrategy'); + jni$_.JClass.forName(r'androidx/emoji2/text/EmojiCompat$LoadStrategy'); /// The type which includes information such as the signature of this class. static const nullableType = $EmojiCompat_LoadStrategy$NullableType(); static const type = $EmojiCompat_LoadStrategy$Type(); /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -1575,39 +1575,39 @@ class EmojiCompat_LoadStrategy extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $EmojiCompat_LoadStrategy $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'androidx.emoji2.text.EmojiCompat$LoadStrategy', @@ -1622,7 +1622,7 @@ class EmojiCompat_LoadStrategy extends _$jni.JObject { factory EmojiCompat_LoadStrategy.implement( $EmojiCompat_LoadStrategy $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return EmojiCompat_LoadStrategy.fromReference( $i.implementReference(), @@ -1639,38 +1639,38 @@ final class _$EmojiCompat_LoadStrategy with $EmojiCompat_LoadStrategy { } final class $EmojiCompat_LoadStrategy$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_LoadStrategy$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$LoadStrategy;'; - @_$jni.internal - @_$core.override - EmojiCompat_LoadStrategy? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_LoadStrategy? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_LoadStrategy.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_LoadStrategy$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_LoadStrategy$NullableType) && other is $EmojiCompat_LoadStrategy$NullableType; @@ -1678,37 +1678,37 @@ final class $EmojiCompat_LoadStrategy$NullableType } final class $EmojiCompat_LoadStrategy$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_LoadStrategy$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$LoadStrategy;'; - @_$jni.internal - @_$core.override - EmojiCompat_LoadStrategy fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_LoadStrategy fromReference(jni$_.JReference reference) => EmojiCompat_LoadStrategy.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_LoadStrategy$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_LoadStrategy$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_LoadStrategy$Type) && other is $EmojiCompat_LoadStrategy$Type; @@ -1716,18 +1716,18 @@ final class $EmojiCompat_LoadStrategy$Type } /// from: `androidx.emoji2.text.EmojiCompat$MetadataRepoLoader` -class EmojiCompat_MetadataRepoLoader extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_MetadataRepoLoader extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_MetadataRepoLoader.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/EmojiCompat$MetadataRepoLoader'); /// The type which includes information such as the signature of this class. @@ -1738,38 +1738,38 @@ class EmojiCompat_MetadataRepoLoader extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$MetadataRepoLoaderCallback;)V', ); - static final _load = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _load = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract void load(androidx.emoji2.text.EmojiCompat$MetadataRepoLoaderCallback metadataRepoLoaderCallback)` void load( EmojiCompat_MetadataRepoLoaderCallback? metadataRepoLoaderCallback, ) { final _$metadataRepoLoaderCallback = - metadataRepoLoaderCallback?.reference ?? _$jni.jNullReference; - _load(reference.pointer, _id_load as _$jni.JMethodIDPtr, + metadataRepoLoaderCallback?.reference ?? jni$_.jNullReference; + _load(reference.pointer, _id_load as jni$_.JMethodIDPtr, _$metadataRepoLoaderCallback.pointer) .check(); } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -1777,15 +1777,15 @@ class EmojiCompat_MetadataRepoLoader extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); @@ -1796,28 +1796,28 @@ class EmojiCompat_MetadataRepoLoader extends _$jni.JObject { $a![0]?.as(const $EmojiCompat_MetadataRepoLoaderCallback$Type(), releaseOriginal: true), ); - return _$jni.nullptr; + return jni$_.nullptr; } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $EmojiCompat_MetadataRepoLoader $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'androidx.emoji2.text.EmojiCompat$MetadataRepoLoader', @@ -1835,7 +1835,7 @@ class EmojiCompat_MetadataRepoLoader extends _$jni.JObject { factory EmojiCompat_MetadataRepoLoader.implement( $EmojiCompat_MetadataRepoLoader $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return EmojiCompat_MetadataRepoLoader.fromReference( $i.implementReference(), @@ -1875,39 +1875,39 @@ final class _$EmojiCompat_MetadataRepoLoader } final class $EmojiCompat_MetadataRepoLoader$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_MetadataRepoLoader$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$MetadataRepoLoader;'; - @_$jni.internal - @_$core.override - EmojiCompat_MetadataRepoLoader? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_MetadataRepoLoader? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_MetadataRepoLoader.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_MetadataRepoLoader$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_MetadataRepoLoader$NullableType) && @@ -1916,38 +1916,38 @@ final class $EmojiCompat_MetadataRepoLoader$NullableType } final class $EmojiCompat_MetadataRepoLoader$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_MetadataRepoLoader$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$MetadataRepoLoader;'; - @_$jni.internal - @_$core.override - EmojiCompat_MetadataRepoLoader fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_MetadataRepoLoader fromReference(jni$_.JReference reference) => EmojiCompat_MetadataRepoLoader.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_MetadataRepoLoader$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_MetadataRepoLoader$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_MetadataRepoLoader$Type) && other is $EmojiCompat_MetadataRepoLoader$Type; @@ -1955,18 +1955,18 @@ final class $EmojiCompat_MetadataRepoLoader$Type } /// from: `androidx.emoji2.text.EmojiCompat$MetadataRepoLoaderCallback` -class EmojiCompat_MetadataRepoLoaderCallback extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_MetadataRepoLoaderCallback extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_MetadataRepoLoaderCallback.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/EmojiCompat$MetadataRepoLoaderCallback'); /// The type which includes information such as the signature of this class. @@ -1978,23 +1978,23 @@ class EmojiCompat_MetadataRepoLoaderCallback extends _$jni.JObject { r'(Landroidx/emoji2/text/MetadataRepo;)V', ); - static final _onLoaded = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _onLoaded = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract void onLoaded(androidx.emoji2.text.MetadataRepo metadataRepo)` void onLoaded( - _$jni.JObject? metadataRepo, + jni$_.JObject? metadataRepo, ) { - final _$metadataRepo = metadataRepo?.reference ?? _$jni.jNullReference; - _onLoaded(reference.pointer, _id_onLoaded as _$jni.JMethodIDPtr, + final _$metadataRepo = metadataRepo?.reference ?? jni$_.jNullReference; + _onLoaded(reference.pointer, _id_onLoaded as jni$_.JMethodIDPtr, _$metadataRepo.pointer) .check(); } @@ -2004,65 +2004,65 @@ class EmojiCompat_MetadataRepoLoaderCallback extends _$jni.JObject { r'(Ljava/lang/Throwable;)V', ); - static final _onFailed = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _onFailed = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract void onFailed(java.lang.Throwable throwable)` void onFailed( - _$jni.JObject? throwable, + jni$_.JObject? throwable, ) { - final _$throwable = throwable?.reference ?? _$jni.jNullReference; - _onFailed(reference.pointer, _id_onFailed as _$jni.JMethodIDPtr, + final _$throwable = throwable?.reference ?? jni$_.jNullReference; + _onFailed(reference.pointer, _id_onFailed as jni$_.JMethodIDPtr, _$throwable.pointer) .check(); } } final class $EmojiCompat_MetadataRepoLoaderCallback$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_MetadataRepoLoaderCallback$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$MetadataRepoLoaderCallback;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override EmojiCompat_MetadataRepoLoaderCallback? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_MetadataRepoLoaderCallback.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_MetadataRepoLoaderCallback$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_MetadataRepoLoaderCallback$NullableType) && @@ -2071,39 +2071,39 @@ final class $EmojiCompat_MetadataRepoLoaderCallback$NullableType } final class $EmojiCompat_MetadataRepoLoaderCallback$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_MetadataRepoLoaderCallback$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$MetadataRepoLoaderCallback;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override EmojiCompat_MetadataRepoLoaderCallback fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => EmojiCompat_MetadataRepoLoaderCallback.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_MetadataRepoLoaderCallback$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_MetadataRepoLoaderCallback$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_MetadataRepoLoaderCallback$Type) && @@ -2112,34 +2112,34 @@ final class $EmojiCompat_MetadataRepoLoaderCallback$Type } /// from: `androidx.emoji2.text.EmojiCompat$ReplaceStrategy` -class EmojiCompat_ReplaceStrategy extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_ReplaceStrategy extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_ReplaceStrategy.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/EmojiCompat$ReplaceStrategy'); + jni$_.JClass.forName(r'androidx/emoji2/text/EmojiCompat$ReplaceStrategy'); /// The type which includes information such as the signature of this class. static const nullableType = $EmojiCompat_ReplaceStrategy$NullableType(); static const type = $EmojiCompat_ReplaceStrategy$Type(); /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -2147,39 +2147,39 @@ class EmojiCompat_ReplaceStrategy extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $EmojiCompat_ReplaceStrategy $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'androidx.emoji2.text.EmojiCompat$ReplaceStrategy', @@ -2194,7 +2194,7 @@ class EmojiCompat_ReplaceStrategy extends _$jni.JObject { factory EmojiCompat_ReplaceStrategy.implement( $EmojiCompat_ReplaceStrategy $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return EmojiCompat_ReplaceStrategy.fromReference( $i.implementReference(), @@ -2211,38 +2211,38 @@ final class _$EmojiCompat_ReplaceStrategy with $EmojiCompat_ReplaceStrategy { } final class $EmojiCompat_ReplaceStrategy$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_ReplaceStrategy$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$ReplaceStrategy;'; - @_$jni.internal - @_$core.override - EmojiCompat_ReplaceStrategy? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_ReplaceStrategy? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_ReplaceStrategy.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_ReplaceStrategy$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_ReplaceStrategy$NullableType) && other is $EmojiCompat_ReplaceStrategy$NullableType; @@ -2250,37 +2250,37 @@ final class $EmojiCompat_ReplaceStrategy$NullableType } final class $EmojiCompat_ReplaceStrategy$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_ReplaceStrategy$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$ReplaceStrategy;'; - @_$jni.internal - @_$core.override - EmojiCompat_ReplaceStrategy fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_ReplaceStrategy fromReference(jni$_.JReference reference) => EmojiCompat_ReplaceStrategy.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_ReplaceStrategy$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_ReplaceStrategy$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_ReplaceStrategy$Type) && other is $EmojiCompat_ReplaceStrategy$Type; @@ -2288,19 +2288,19 @@ final class $EmojiCompat_ReplaceStrategy$Type } /// from: `androidx.emoji2.text.EmojiCompat$SpanFactory` -class EmojiCompat_SpanFactory extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat_SpanFactory extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat_SpanFactory.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/EmojiCompat$SpanFactory'); + jni$_.JClass.forName(r'androidx/emoji2/text/EmojiCompat$SpanFactory'); /// The type which includes information such as the signature of this class. static const nullableType = $EmojiCompat_SpanFactory$NullableType(); @@ -2310,39 +2310,39 @@ class EmojiCompat_SpanFactory extends _$jni.JObject { r'(Landroidx/emoji2/text/TypefaceEmojiRasterizer;)Landroidx/emoji2/text/EmojiSpan;', ); - static final _createSpan = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createSpan = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract androidx.emoji2.text.EmojiSpan createSpan(androidx.emoji2.text.TypefaceEmojiRasterizer typefaceEmojiRasterizer)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? createSpan( - _$jni.JObject? typefaceEmojiRasterizer, + jni$_.JObject? createSpan( + jni$_.JObject? typefaceEmojiRasterizer, ) { final _$typefaceEmojiRasterizer = - typefaceEmojiRasterizer?.reference ?? _$jni.jNullReference; - return _createSpan(reference.pointer, _id_createSpan as _$jni.JMethodIDPtr, + typefaceEmojiRasterizer?.reference ?? jni$_.jNullReference; + return _createSpan(reference.pointer, _id_createSpan as jni$_.JMethodIDPtr, _$typefaceEmojiRasterizer.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -2350,15 +2350,15 @@ class EmojiCompat_SpanFactory extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); @@ -2366,34 +2366,34 @@ class EmojiCompat_SpanFactory extends _$jni.JObject { if ($d == r'createSpan(Landroidx/emoji2/text/TypefaceEmojiRasterizer;)Landroidx/emoji2/text/EmojiSpan;') { final $r = _$impls[$p]!.createSpan( - $a![0]?.as(const _$jni.JObjectType(), releaseOriginal: true), + $a![0]?.as(const jni$_.JObjectType(), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $EmojiCompat_SpanFactory $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'androidx.emoji2.text.EmojiCompat$SpanFactory', @@ -2408,7 +2408,7 @@ class EmojiCompat_SpanFactory extends _$jni.JObject { factory EmojiCompat_SpanFactory.implement( $EmojiCompat_SpanFactory $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return EmojiCompat_SpanFactory.fromReference( $i.implementReference(), @@ -2418,60 +2418,60 @@ class EmojiCompat_SpanFactory extends _$jni.JObject { abstract base mixin class $EmojiCompat_SpanFactory { factory $EmojiCompat_SpanFactory({ - required _$jni.JObject? Function(_$jni.JObject? typefaceEmojiRasterizer) + required jni$_.JObject? Function(jni$_.JObject? typefaceEmojiRasterizer) createSpan, }) = _$EmojiCompat_SpanFactory; - _$jni.JObject? createSpan(_$jni.JObject? typefaceEmojiRasterizer); + jni$_.JObject? createSpan(jni$_.JObject? typefaceEmojiRasterizer); } final class _$EmojiCompat_SpanFactory with $EmojiCompat_SpanFactory { _$EmojiCompat_SpanFactory({ - required _$jni.JObject? Function(_$jni.JObject? typefaceEmojiRasterizer) + required jni$_.JObject? Function(jni$_.JObject? typefaceEmojiRasterizer) createSpan, }) : _createSpan = createSpan; - final _$jni.JObject? Function(_$jni.JObject? typefaceEmojiRasterizer) + final jni$_.JObject? Function(jni$_.JObject? typefaceEmojiRasterizer) _createSpan; - _$jni.JObject? createSpan(_$jni.JObject? typefaceEmojiRasterizer) { + jni$_.JObject? createSpan(jni$_.JObject? typefaceEmojiRasterizer) { return _createSpan(typefaceEmojiRasterizer); } } final class $EmojiCompat_SpanFactory$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_SpanFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$SpanFactory;'; - @_$jni.internal - @_$core.override - EmojiCompat_SpanFactory? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_SpanFactory? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat_SpanFactory.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_SpanFactory$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_SpanFactory$NullableType) && other is $EmojiCompat_SpanFactory$NullableType; @@ -2479,37 +2479,37 @@ final class $EmojiCompat_SpanFactory$NullableType } final class $EmojiCompat_SpanFactory$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat_SpanFactory$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat$SpanFactory;'; - @_$jni.internal - @_$core.override - EmojiCompat_SpanFactory fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat_SpanFactory fromReference(jni$_.JReference reference) => EmojiCompat_SpanFactory.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat_SpanFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat_SpanFactory$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat_SpanFactory$Type) && other is $EmojiCompat_SpanFactory$Type; @@ -2517,19 +2517,19 @@ final class $EmojiCompat_SpanFactory$Type } /// from: `androidx.emoji2.text.EmojiCompat` -class EmojiCompat extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class EmojiCompat extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal EmojiCompat.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/EmojiCompat'); + jni$_.JClass.forName(r'androidx/emoji2/text/EmojiCompat'); /// The type which includes information such as the signature of this class. static const nullableType = $EmojiCompat$NullableType(); @@ -2541,9 +2541,9 @@ class EmojiCompat extends _$jni.JObject { /// from: `static public final java.lang.String EDITOR_INFO_METAVERSION_KEY` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get EDITOR_INFO_METAVERSION_KEY => + static jni$_.JString? get EDITOR_INFO_METAVERSION_KEY => _id_EDITOR_INFO_METAVERSION_KEY.get( - _class, const _$jni.JStringNullableType()); + _class, const jni$_.JStringNullableType()); static final _id_EDITOR_INFO_REPLACE_ALL_KEY = _class.staticFieldId( r'EDITOR_INFO_REPLACE_ALL_KEY', @@ -2552,9 +2552,9 @@ class EmojiCompat extends _$jni.JObject { /// from: `static public final java.lang.String EDITOR_INFO_REPLACE_ALL_KEY` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get EDITOR_INFO_REPLACE_ALL_KEY => + static jni$_.JString? get EDITOR_INFO_REPLACE_ALL_KEY => _id_EDITOR_INFO_REPLACE_ALL_KEY.get( - _class, const _$jni.JStringNullableType()); + _class, const jni$_.JStringNullableType()); /// from: `static public final int LOAD_STATE_DEFAULT` static const LOAD_STATE_DEFAULT = 3; @@ -2596,24 +2596,24 @@ class EmojiCompat extends _$jni.JObject { r'(Landroid/content/Context;)Landroidx/emoji2/text/EmojiCompat;', ); - static final _init = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _init = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public androidx.emoji2.text.EmojiCompat init(android.content.Context context)` /// The returned object must be released after use, by calling the [release] method. static EmojiCompat? init( - _$jni.JObject? context, + jni$_.JObject? context, ) { - final _$context = context?.reference ?? _$jni.jNullReference; - return _init(_class.reference.pointer, _id_init as _$jni.JMethodIDPtr, + final _$context = context?.reference ?? jni$_.jNullReference; + return _init(_class.reference.pointer, _id_init as jni$_.JMethodIDPtr, _$context.pointer) .object(const $EmojiCompat$NullableType()); } @@ -2623,34 +2623,34 @@ class EmojiCompat extends _$jni.JObject { r'(Landroid/content/Context;Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigFactory;)Landroidx/emoji2/text/EmojiCompat;', ); - static final _init$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _init$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public androidx.emoji2.text.EmojiCompat init(android.content.Context context, androidx.emoji2.text.DefaultEmojiCompatConfig$DefaultEmojiCompatConfigFactory defaultEmojiCompatConfigFactory)` /// The returned object must be released after use, by calling the [release] method. static EmojiCompat? init$1( - _$jni.JObject? context, + jni$_.JObject? context, DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory? defaultEmojiCompatConfigFactory, ) { - final _$context = context?.reference ?? _$jni.jNullReference; + final _$context = context?.reference ?? jni$_.jNullReference; final _$defaultEmojiCompatConfigFactory = - defaultEmojiCompatConfigFactory?.reference ?? _$jni.jNullReference; - return _init$1(_class.reference.pointer, _id_init$1 as _$jni.JMethodIDPtr, + defaultEmojiCompatConfigFactory?.reference ?? jni$_.jNullReference; + return _init$1(_class.reference.pointer, _id_init$1 as jni$_.JMethodIDPtr, _$context.pointer, _$defaultEmojiCompatConfigFactory.pointer) .object(const $EmojiCompat$NullableType()); } @@ -2660,24 +2660,24 @@ class EmojiCompat extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$Config;)Landroidx/emoji2/text/EmojiCompat;', ); - static final _init$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _init$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public androidx.emoji2.text.EmojiCompat init(androidx.emoji2.text.EmojiCompat$Config config)` /// The returned object must be released after use, by calling the [release] method. static EmojiCompat? init$2( EmojiCompat_Config? config, ) { - final _$config = config?.reference ?? _$jni.jNullReference; - return _init$2(_class.reference.pointer, _id_init$2 as _$jni.JMethodIDPtr, + final _$config = config?.reference ?? jni$_.jNullReference; + return _init$2(_class.reference.pointer, _id_init$2 as jni$_.JMethodIDPtr, _$config.pointer) .object(const $EmojiCompat$NullableType()); } @@ -2687,22 +2687,22 @@ class EmojiCompat extends _$jni.JObject { r'()Z', ); - static final _isConfigured = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isConfigured = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public boolean isConfigured()` static bool isConfigured() { return _isConfigured( - _class.reference.pointer, _id_isConfigured as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_isConfigured as jni$_.JMethodIDPtr) .boolean; } @@ -2711,24 +2711,24 @@ class EmojiCompat extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$Config;)Landroidx/emoji2/text/EmojiCompat;', ); - static final _reset = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _reset = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public androidx.emoji2.text.EmojiCompat reset(androidx.emoji2.text.EmojiCompat$Config config)` /// The returned object must be released after use, by calling the [release] method. static EmojiCompat? reset( EmojiCompat_Config? config, ) { - final _$config = config?.reference ?? _$jni.jNullReference; - return _reset(_class.reference.pointer, _id_reset as _$jni.JMethodIDPtr, + final _$config = config?.reference ?? jni$_.jNullReference; + return _reset(_class.reference.pointer, _id_reset as jni$_.JMethodIDPtr, _$config.pointer) .object(const $EmojiCompat$NullableType()); } @@ -2738,24 +2738,24 @@ class EmojiCompat extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat;)Landroidx/emoji2/text/EmojiCompat;', ); - static final _reset$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _reset$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public androidx.emoji2.text.EmojiCompat reset(androidx.emoji2.text.EmojiCompat emojiCompat)` /// The returned object must be released after use, by calling the [release] method. static EmojiCompat? reset$1( EmojiCompat? emojiCompat, ) { - final _$emojiCompat = emojiCompat?.reference ?? _$jni.jNullReference; - return _reset$1(_class.reference.pointer, _id_reset$1 as _$jni.JMethodIDPtr, + final _$emojiCompat = emojiCompat?.reference ?? jni$_.jNullReference; + return _reset$1(_class.reference.pointer, _id_reset$1 as jni$_.JMethodIDPtr, _$emojiCompat.pointer) .object(const $EmojiCompat$NullableType()); } @@ -2766,21 +2766,21 @@ class EmojiCompat extends _$jni.JObject { ); static final _skipDefaultConfigurationLookup = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `static public void skipDefaultConfigurationLookup(boolean z)` static void skipDefaultConfigurationLookup( bool z, ) { _skipDefaultConfigurationLookup(_class.reference.pointer, - _id_skipDefaultConfigurationLookup as _$jni.JMethodIDPtr, z ? 1 : 0) + _id_skipDefaultConfigurationLookup as jni$_.JMethodIDPtr, z ? 1 : 0) .check(); } @@ -2789,22 +2789,22 @@ class EmojiCompat extends _$jni.JObject { r'()Landroidx/emoji2/text/EmojiCompat;', ); - static final _get = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _get = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public androidx.emoji2.text.EmojiCompat get()` /// The returned object must be released after use, by calling the [release] method. static EmojiCompat? get() { - return _get(_class.reference.pointer, _id_get as _$jni.JMethodIDPtr) + return _get(_class.reference.pointer, _id_get as jni$_.JMethodIDPtr) .object(const $EmojiCompat$NullableType()); } @@ -2813,21 +2813,21 @@ class EmojiCompat extends _$jni.JObject { r'()V', ); - static final _load = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _load = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void load()` void load() { - _load(reference.pointer, _id_load as _$jni.JMethodIDPtr).check(); + _load(reference.pointer, _id_load as jni$_.JMethodIDPtr).check(); } static final _id_registerInitCallback = _class.instanceMethodId( @@ -2835,25 +2835,25 @@ class EmojiCompat extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$InitCallback;)V', ); - static final _registerInitCallback = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _registerInitCallback = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void registerInitCallback(androidx.emoji2.text.EmojiCompat$InitCallback initCallback)` void registerInitCallback( EmojiCompat_InitCallback? initCallback, ) { - final _$initCallback = initCallback?.reference ?? _$jni.jNullReference; + final _$initCallback = initCallback?.reference ?? jni$_.jNullReference; _registerInitCallback( reference.pointer, - _id_registerInitCallback as _$jni.JMethodIDPtr, + _id_registerInitCallback as jni$_.JMethodIDPtr, _$initCallback.pointer) .check(); } @@ -2863,25 +2863,25 @@ class EmojiCompat extends _$jni.JObject { r'(Landroidx/emoji2/text/EmojiCompat$InitCallback;)V', ); - static final _unregisterInitCallback = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _unregisterInitCallback = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void unregisterInitCallback(androidx.emoji2.text.EmojiCompat$InitCallback initCallback)` void unregisterInitCallback( EmojiCompat_InitCallback? initCallback, ) { - final _$initCallback = initCallback?.reference ?? _$jni.jNullReference; + final _$initCallback = initCallback?.reference ?? jni$_.jNullReference; _unregisterInitCallback( reference.pointer, - _id_unregisterInitCallback as _$jni.JMethodIDPtr, + _id_unregisterInitCallback as jni$_.JMethodIDPtr, _$initCallback.pointer) .check(); } @@ -2891,22 +2891,22 @@ class EmojiCompat extends _$jni.JObject { r'()I', ); - static final _getLoadState = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getLoadState = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getLoadState()` int getLoadState() { return _getLoadState( - reference.pointer, _id_getLoadState as _$jni.JMethodIDPtr) + reference.pointer, _id_getLoadState as jni$_.JMethodIDPtr) .integer; } @@ -2916,22 +2916,22 @@ class EmojiCompat extends _$jni.JObject { ); static final _isEmojiSpanIndicatorEnabled = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isEmojiSpanIndicatorEnabled()` bool isEmojiSpanIndicatorEnabled() { return _isEmojiSpanIndicatorEnabled(reference.pointer, - _id_isEmojiSpanIndicatorEnabled as _$jni.JMethodIDPtr) + _id_isEmojiSpanIndicatorEnabled as jni$_.JMethodIDPtr) .boolean; } @@ -2941,22 +2941,22 @@ class EmojiCompat extends _$jni.JObject { ); static final _getEmojiSpanIndicatorColor = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getEmojiSpanIndicatorColor()` int getEmojiSpanIndicatorColor() { return _getEmojiSpanIndicatorColor(reference.pointer, - _id_getEmojiSpanIndicatorColor as _$jni.JMethodIDPtr) + _id_getEmojiSpanIndicatorColor as jni$_.JMethodIDPtr) .integer; } @@ -2965,26 +2965,26 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;I)I', ); - static final _getEmojiStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _getEmojiStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public int getEmojiStart(java.lang.CharSequence charSequence, int i)` int getEmojiStart( - _$jni.JObject? charSequence, + jni$_.JObject? charSequence, int i, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; return _getEmojiStart(reference.pointer, - _id_getEmojiStart as _$jni.JMethodIDPtr, _$charSequence.pointer, i) + _id_getEmojiStart as jni$_.JMethodIDPtr, _$charSequence.pointer, i) .integer; } @@ -2993,26 +2993,26 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;I)I', ); - static final _getEmojiEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _getEmojiEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public int getEmojiEnd(java.lang.CharSequence charSequence, int i)` int getEmojiEnd( - _$jni.JObject? charSequence, + jni$_.JObject? charSequence, int i, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; return _getEmojiEnd(reference.pointer, - _id_getEmojiEnd as _$jni.JMethodIDPtr, _$charSequence.pointer, i) + _id_getEmojiEnd as jni$_.JMethodIDPtr, _$charSequence.pointer, i) .integer; } @@ -3021,36 +3021,36 @@ class EmojiCompat extends _$jni.JObject { r'(Landroid/text/Editable;ILandroid/view/KeyEvent;)Z', ); - static final _handleOnKeyDown = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _handleOnKeyDown = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Int32, + jni$_.Pointer )>)>>('globalEnv_CallStaticBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, int, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.Pointer)>(); /// from: `static public boolean handleOnKeyDown(android.text.Editable editable, int i, android.view.KeyEvent keyEvent)` static bool handleOnKeyDown( - _$jni.JObject? editable, + jni$_.JObject? editable, int i, - _$jni.JObject? keyEvent, + jni$_.JObject? keyEvent, ) { - final _$editable = editable?.reference ?? _$jni.jNullReference; - final _$keyEvent = keyEvent?.reference ?? _$jni.jNullReference; + final _$editable = editable?.reference ?? jni$_.jNullReference; + final _$keyEvent = keyEvent?.reference ?? jni$_.jNullReference; return _handleOnKeyDown( _class.reference.pointer, - _id_handleOnKeyDown as _$jni.JMethodIDPtr, + _id_handleOnKeyDown as jni$_.JMethodIDPtr, _$editable.pointer, i, _$keyEvent.pointer) @@ -3063,43 +3063,43 @@ class EmojiCompat extends _$jni.JObject { ); static final _handleDeleteSurroundingText = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallStaticBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, int, int, int)>(); /// from: `static public boolean handleDeleteSurroundingText(android.view.inputmethod.InputConnection inputConnection, android.text.Editable editable, int i, int i1, boolean z)` static bool handleDeleteSurroundingText( - _$jni.JObject? inputConnection, - _$jni.JObject? editable, + jni$_.JObject? inputConnection, + jni$_.JObject? editable, int i, int i1, bool z, ) { final _$inputConnection = - inputConnection?.reference ?? _$jni.jNullReference; - final _$editable = editable?.reference ?? _$jni.jNullReference; + inputConnection?.reference ?? jni$_.jNullReference; + final _$editable = editable?.reference ?? jni$_.jNullReference; return _handleDeleteSurroundingText( _class.reference.pointer, - _id_handleDeleteSurroundingText as _$jni.JMethodIDPtr, + _id_handleDeleteSurroundingText as jni$_.JMethodIDPtr, _$inputConnection.pointer, _$editable.pointer, i, @@ -3113,24 +3113,24 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;)Z', ); - static final _hasEmojiGlyph = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _hasEmojiGlyph = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean hasEmojiGlyph(java.lang.CharSequence charSequence)` bool hasEmojiGlyph( - _$jni.JObject? charSequence, + jni$_.JObject? charSequence, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; return _hasEmojiGlyph(reference.pointer, - _id_hasEmojiGlyph as _$jni.JMethodIDPtr, _$charSequence.pointer) + _id_hasEmojiGlyph as jni$_.JMethodIDPtr, _$charSequence.pointer) .boolean; } @@ -3139,27 +3139,27 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;I)Z', ); - static final _hasEmojiGlyph$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _hasEmojiGlyph$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public boolean hasEmojiGlyph(java.lang.CharSequence charSequence, int i)` bool hasEmojiGlyph$1( - _$jni.JObject? charSequence, + jni$_.JObject? charSequence, int i, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; return _hasEmojiGlyph$1( reference.pointer, - _id_hasEmojiGlyph$1 as _$jni.JMethodIDPtr, + _id_hasEmojiGlyph$1 as jni$_.JMethodIDPtr, _$charSequence.pointer, i) .boolean; @@ -3170,26 +3170,26 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;I)I', ); - static final _getEmojiMatch = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _getEmojiMatch = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public int getEmojiMatch(java.lang.CharSequence charSequence, int i)` int getEmojiMatch( - _$jni.JObject? charSequence, + jni$_.JObject? charSequence, int i, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; return _getEmojiMatch(reference.pointer, - _id_getEmojiMatch as _$jni.JMethodIDPtr, _$charSequence.pointer, i) + _id_getEmojiMatch as jni$_.JMethodIDPtr, _$charSequence.pointer, i) .integer; } @@ -3198,26 +3198,26 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;)Ljava/lang/CharSequence;', ); - static final _process = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _process = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.lang.CharSequence process(java.lang.CharSequence charSequence)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? process( - _$jni.JObject? charSequence, + jni$_.JObject? process( + jni$_.JObject? charSequence, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; - return _process(reference.pointer, _id_process as _$jni.JMethodIDPtr, + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; + return _process(reference.pointer, _id_process as jni$_.JMethodIDPtr, _$charSequence.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_process$1 = _class.instanceMethodId( @@ -3225,32 +3225,32 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;II)Ljava/lang/CharSequence;', ); - static final _process$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _process$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int, int)>(); /// from: `public java.lang.CharSequence process(java.lang.CharSequence charSequence, int i, int i1)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? process$1( - _$jni.JObject? charSequence, + jni$_.JObject? process$1( + jni$_.JObject? charSequence, int i, int i1, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; - return _process$1(reference.pointer, _id_process$1 as _$jni.JMethodIDPtr, + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; + return _process$1(reference.pointer, _id_process$1 as jni$_.JMethodIDPtr, _$charSequence.pointer, i, i1) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_process$2 = _class.instanceMethodId( @@ -3258,34 +3258,34 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;III)Ljava/lang/CharSequence;', ); - static final _process$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _process$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int, int, int)>(); /// from: `public java.lang.CharSequence process(java.lang.CharSequence charSequence, int i, int i1, int i2)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? process$2( - _$jni.JObject? charSequence, + jni$_.JObject? process$2( + jni$_.JObject? charSequence, int i, int i1, int i2, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; - return _process$2(reference.pointer, _id_process$2 as _$jni.JMethodIDPtr, + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; + return _process$2(reference.pointer, _id_process$2 as jni$_.JMethodIDPtr, _$charSequence.pointer, i, i1, i2) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_process$3 = _class.instanceMethodId( @@ -3293,24 +3293,24 @@ class EmojiCompat extends _$jni.JObject { r'(Ljava/lang/CharSequence;IIII)Ljava/lang/CharSequence;', ); - static final _process$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _process$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, int, int, int, @@ -3318,17 +3318,17 @@ class EmojiCompat extends _$jni.JObject { /// from: `public java.lang.CharSequence process(java.lang.CharSequence charSequence, int i, int i1, int i2, int i3)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? process$3( - _$jni.JObject? charSequence, + jni$_.JObject? process$3( + jni$_.JObject? charSequence, int i, int i1, int i2, int i3, ) { - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; - return _process$3(reference.pointer, _id_process$3 as _$jni.JMethodIDPtr, + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; + return _process$3(reference.pointer, _id_process$3 as jni$_.JMethodIDPtr, _$charSequence.pointer, i, i1, i2, i3) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_getAssetSignature = _class.instanceMethodId( @@ -3336,24 +3336,24 @@ class EmojiCompat extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getAssetSignature = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getAssetSignature = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getAssetSignature()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? getAssetSignature() { + jni$_.JString? getAssetSignature() { return _getAssetSignature( - reference.pointer, _id_getAssetSignature as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getAssetSignature as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_updateEditorInfo = _class.instanceMethodId( @@ -3361,96 +3361,96 @@ class EmojiCompat extends _$jni.JObject { r'(Landroid/view/inputmethod/EditorInfo;)V', ); - static final _updateEditorInfo = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _updateEditorInfo = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void updateEditorInfo(android.view.inputmethod.EditorInfo editorInfo)` void updateEditorInfo( - _$jni.JObject? editorInfo, + jni$_.JObject? editorInfo, ) { - final _$editorInfo = editorInfo?.reference ?? _$jni.jNullReference; + final _$editorInfo = editorInfo?.reference ?? jni$_.jNullReference; _updateEditorInfo(reference.pointer, - _id_updateEditorInfo as _$jni.JMethodIDPtr, _$editorInfo.pointer) + _id_updateEditorInfo as jni$_.JMethodIDPtr, _$editorInfo.pointer) .check(); } } -final class $EmojiCompat$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $EmojiCompat$NullableType extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat;'; - @_$jni.internal - @_$core.override - EmojiCompat? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + EmojiCompat? fromReference(jni$_.JReference reference) => reference.isNull ? null : EmojiCompat.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat$NullableType) && other is $EmojiCompat$NullableType; } } -final class $EmojiCompat$Type extends _$jni.JObjType { - @_$jni.internal +final class $EmojiCompat$Type extends jni$_.JObjType { + @jni$_.internal const $EmojiCompat$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/EmojiCompat;'; - @_$jni.internal - @_$core.override - EmojiCompat fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + EmojiCompat fromReference(jni$_.JReference reference) => EmojiCompat.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $EmojiCompat$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($EmojiCompat$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($EmojiCompat$Type) && other is $EmojiCompat$Type; @@ -3459,19 +3459,19 @@ final class $EmojiCompat$Type extends _$jni.JObjType { /// from: `androidx.emoji2.text.DefaultEmojiCompatConfig$DefaultEmojiCompatConfigFactory` class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigFactory'); /// The type which includes information such as the signature of this class. @@ -3483,16 +3483,16 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory r'(Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (androidx.emoji2.text.DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper defaultEmojiCompatConfigHelper)` /// The returned object must be released after use, by calling the [release] method. @@ -3501,11 +3501,11 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory defaultEmojiCompatConfigHelper, ) { final _$defaultEmojiCompatConfigHelper = - defaultEmojiCompatConfigHelper?.reference ?? _$jni.jNullReference; + defaultEmojiCompatConfigHelper?.reference ?? jni$_.jNullReference; return DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory .fromReference(_new$( _class.reference.pointer, - _id_new$ as _$jni.JMethodIDPtr, + _id_new$ as jni$_.JMethodIDPtr, _$defaultEmojiCompatConfigHelper.pointer) .reference); } @@ -3515,69 +3515,69 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory r'(Landroid/content/Context;)Landroidx/emoji2/text/EmojiCompat$Config;', ); - static final _create = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _create = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public androidx.emoji2.text.EmojiCompat$Config create(android.content.Context context)` /// The returned object must be released after use, by calling the [release] method. EmojiCompat_Config? create( - _$jni.JObject? context, + jni$_.JObject? context, ) { - final _$context = context?.reference ?? _$jni.jNullReference; - return _create(reference.pointer, _id_create as _$jni.JMethodIDPtr, + final _$context = context?.reference ?? jni$_.jNullReference; + return _create(reference.pointer, _id_create as jni$_.JMethodIDPtr, _$context.pointer) .object(const $EmojiCompat_Config$NullableType()); } } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$NullableType - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigFactory;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory .fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$NullableType) .hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$NullableType) && @@ -3587,42 +3587,42 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$NullableTy } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$Type - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigFactory;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$Type) && @@ -3632,19 +3632,19 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigFactory$Type /// from: `androidx.emoji2.text.DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper` class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper'); /// The type which includes information such as the signature of this class. @@ -3656,16 +3656,16 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` @@ -3673,7 +3673,7 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper factory DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper() { return DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper .fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -3682,39 +3682,39 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper r'(Landroid/content/pm/PackageManager;Ljava/lang/String;)[Landroid/content/pm/Signature;', ); - static final _getSigningSignatures = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _getSigningSignatures = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public android.content.pm.Signature[] getSigningSignatures(android.content.pm.PackageManager packageManager, java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.JObject?>? getSigningSignatures( - _$jni.JObject? packageManager, - _$jni.JString? string, + jni$_.JArray? getSigningSignatures( + jni$_.JObject? packageManager, + jni$_.JString? string, ) { - final _$packageManager = packageManager?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; + final _$packageManager = packageManager?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _getSigningSignatures( reference.pointer, - _id_getSigningSignatures as _$jni.JMethodIDPtr, + _id_getSigningSignatures as jni$_.JMethodIDPtr, _$packageManager.pointer, _$string.pointer) - .object<_$jni.JArray<_$jni.JObject?>?>( - const _$jni.JArrayNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + .object?>( + const jni$_.JArrayNullableType( + jni$_.JObjectNullableType())); } static final _id_queryIntentContentProviders = _class.instanceMethodId( @@ -3723,43 +3723,43 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper ); static final _queryIntentContentProviders = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Int32 + jni$_.Pointer, + jni$_.Pointer, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, int)>(); /// from: `public java.util.List queryIntentContentProviders(android.content.pm.PackageManager packageManager, android.content.Intent intent, int i)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JObject?>? queryIntentContentProviders( - _$jni.JObject? packageManager, - _$jni.JObject? intent, + jni$_.JList? queryIntentContentProviders( + jni$_.JObject? packageManager, + jni$_.JObject? intent, int i, ) { - final _$packageManager = packageManager?.reference ?? _$jni.jNullReference; - final _$intent = intent?.reference ?? _$jni.jNullReference; + final _$packageManager = packageManager?.reference ?? jni$_.jNullReference; + final _$intent = intent?.reference ?? jni$_.jNullReference; return _queryIntentContentProviders( reference.pointer, - _id_queryIntentContentProviders as _$jni.JMethodIDPtr, + _id_queryIntentContentProviders as jni$_.JMethodIDPtr, _$packageManager.pointer, _$intent.pointer, i) - .object<_$jni.JList<_$jni.JObject?>?>( - const _$jni.JListNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + .object?>( + const jni$_.JListNullableType( + jni$_.JObjectNullableType())); } static final _id_getProviderInfo = _class.instanceMethodId( @@ -3767,69 +3767,69 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper r'(Landroid/content/pm/ResolveInfo;)Landroid/content/pm/ProviderInfo;', ); - static final _getProviderInfo = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getProviderInfo = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public android.content.pm.ProviderInfo getProviderInfo(android.content.pm.ResolveInfo resolveInfo)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? getProviderInfo( - _$jni.JObject? resolveInfo, + jni$_.JObject? getProviderInfo( + jni$_.JObject? resolveInfo, ) { - final _$resolveInfo = resolveInfo?.reference ?? _$jni.jNullReference; + final _$resolveInfo = resolveInfo?.reference ?? jni$_.jNullReference; return _getProviderInfo(reference.pointer, - _id_getProviderInfo as _$jni.JMethodIDPtr, _$resolveInfo.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_getProviderInfo as jni$_.JMethodIDPtr, _$resolveInfo.pointer) + .object(const jni$_.JObjectNullableType()); } } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableType - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper .fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableType) .hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableType) && @@ -3839,42 +3839,42 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableTyp } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$Type - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$Type) && @@ -3885,19 +3885,19 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$Type /// from: `androidx.emoji2.text.DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API19` class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 extends DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper { - @_$jni.internal - @_$core.override - final _$jni + @jni$_.internal + @core$_.override + final jni$_ .JObjType $type; - @_$jni.internal + @jni$_.internal DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API19'); /// The type which includes information such as the signature of this class. @@ -3909,16 +3909,16 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` @@ -3926,7 +3926,7 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 factory DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19() { return DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 .fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -3936,43 +3936,43 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 ); static final _queryIntentContentProviders = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Int32 + jni$_.Pointer, + jni$_.Pointer, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, int)>(); /// from: `public java.util.List queryIntentContentProviders(android.content.pm.PackageManager packageManager, android.content.Intent intent, int i)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JObject?>? queryIntentContentProviders( - _$jni.JObject? packageManager, - _$jni.JObject? intent, + jni$_.JList? queryIntentContentProviders( + jni$_.JObject? packageManager, + jni$_.JObject? intent, int i, ) { - final _$packageManager = packageManager?.reference ?? _$jni.jNullReference; - final _$intent = intent?.reference ?? _$jni.jNullReference; + final _$packageManager = packageManager?.reference ?? jni$_.jNullReference; + final _$intent = intent?.reference ?? jni$_.jNullReference; return _queryIntentContentProviders( reference.pointer, - _id_queryIntentContentProviders as _$jni.JMethodIDPtr, + _id_queryIntentContentProviders as jni$_.JMethodIDPtr, _$packageManager.pointer, _$intent.pointer, i) - .object<_$jni.JList<_$jni.JObject?>?>( - const _$jni.JListNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + .object?>( + const jni$_.JListNullableType( + jni$_.JObjectNullableType())); } static final _id_getProviderInfo = _class.instanceMethodId( @@ -3980,70 +3980,70 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 r'(Landroid/content/pm/ResolveInfo;)Landroid/content/pm/ProviderInfo;', ); - static final _getProviderInfo = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getProviderInfo = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public android.content.pm.ProviderInfo getProviderInfo(android.content.pm.ResolveInfo resolveInfo)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? getProviderInfo( - _$jni.JObject? resolveInfo, + jni$_.JObject? getProviderInfo( + jni$_.JObject? resolveInfo, ) { - final _$resolveInfo = resolveInfo?.reference ?? _$jni.jNullReference; + final _$resolveInfo = resolveInfo?.reference ?? jni$_.jNullReference; return _getProviderInfo(reference.pointer, - _id_getProviderInfo as _$jni.JMethodIDPtr, _$resolveInfo.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_getProviderInfo as jni$_.JMethodIDPtr, _$resolveInfo.pointer) + .object(const jni$_.JObjectNullableType()); } } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$NullableType - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API19;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 .fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$NullableType) .hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$NullableType) && @@ -4053,45 +4053,45 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$Nulla } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$Type - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API19;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 .fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper$NullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$Type) .hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$Type) && @@ -4103,19 +4103,19 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$Type /// from: `androidx.emoji2.text.DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API28` class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 extends DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19 { - @_$jni.internal - @_$core.override - final _$jni + @jni$_.internal + @core$_.override + final jni$_ .JObjType $type; - @_$jni.internal + @jni$_.internal DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'androidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API28'); /// The type which includes information such as the signature of this class. @@ -4127,16 +4127,16 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` @@ -4144,7 +4144,7 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 factory DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28() { return DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 .fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -4153,83 +4153,83 @@ class DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 r'(Landroid/content/pm/PackageManager;Ljava/lang/String;)[Landroid/content/pm/Signature;', ); - static final _getSigningSignatures$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _getSigningSignatures$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public android.content.pm.Signature[] getSigningSignatures(android.content.pm.PackageManager packageManager, java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.JObject?>? getSigningSignatures$1( - _$jni.JObject? packageManager, - _$jni.JString? string, + jni$_.JArray? getSigningSignatures$1( + jni$_.JObject? packageManager, + jni$_.JString? string, ) { - final _$packageManager = packageManager?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; + final _$packageManager = packageManager?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _getSigningSignatures$1( reference.pointer, - _id_getSigningSignatures$1 as _$jni.JMethodIDPtr, + _id_getSigningSignatures$1 as jni$_.JMethodIDPtr, _$packageManager.pointer, _$string.pointer) - .object<_$jni.JArray<_$jni.JObject?>?>( - const _$jni.JArrayNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + .object?>( + const jni$_.JArrayNullableType( + jni$_.JObjectNullableType())); } } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$NullableType - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API28;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 .fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$NullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 3; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$NullableType) .hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$NullableType) && @@ -4239,45 +4239,45 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$Nulla } final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$Type - extends _$jni + extends jni$_ .JObjType { - @_$jni.internal + @jni$_.internal const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API28;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28 .fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API19$NullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 3; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$Type) .hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$Type) && @@ -4287,19 +4287,19 @@ final class $DefaultEmojiCompatConfig_DefaultEmojiCompatConfigHelper_API28$Type } /// from: `androidx.emoji2.text.DefaultEmojiCompatConfig` -class DefaultEmojiCompatConfig extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class DefaultEmojiCompatConfig extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal DefaultEmojiCompatConfig.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'androidx/emoji2/text/DefaultEmojiCompatConfig'); + jni$_.JClass.forName(r'androidx/emoji2/text/DefaultEmojiCompatConfig'); /// The type which includes information such as the signature of this class. static const nullableType = $DefaultEmojiCompatConfig$NullableType(); @@ -4309,62 +4309,62 @@ class DefaultEmojiCompatConfig extends _$jni.JObject { r'(Landroid/content/Context;)Landroidx/emoji2/text/FontRequestEmojiCompatConfig;', ); - static final _create = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _create = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public androidx.emoji2.text.FontRequestEmojiCompatConfig create(android.content.Context context)` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JObject? create( - _$jni.JObject? context, + static jni$_.JObject? create( + jni$_.JObject? context, ) { - final _$context = context?.reference ?? _$jni.jNullReference; - return _create(_class.reference.pointer, _id_create as _$jni.JMethodIDPtr, + final _$context = context?.reference ?? jni$_.jNullReference; + return _create(_class.reference.pointer, _id_create as jni$_.JMethodIDPtr, _$context.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } } final class $DefaultEmojiCompatConfig$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $DefaultEmojiCompatConfig$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig;'; - @_$jni.internal - @_$core.override - DefaultEmojiCompatConfig? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + DefaultEmojiCompatConfig? fromReference(jni$_.JReference reference) => reference.isNull ? null : DefaultEmojiCompatConfig.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig$NullableType) && other is $DefaultEmojiCompatConfig$NullableType; @@ -4372,37 +4372,37 @@ final class $DefaultEmojiCompatConfig$NullableType } final class $DefaultEmojiCompatConfig$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $DefaultEmojiCompatConfig$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroidx/emoji2/text/DefaultEmojiCompatConfig;'; - @_$jni.internal - @_$core.override - DefaultEmojiCompatConfig fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + DefaultEmojiCompatConfig fromReference(jni$_.JReference reference) => DefaultEmojiCompatConfig.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $DefaultEmojiCompatConfig$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($DefaultEmojiCompatConfig$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($DefaultEmojiCompatConfig$Type) && other is $DefaultEmojiCompatConfig$Type; @@ -4410,18 +4410,18 @@ final class $DefaultEmojiCompatConfig$Type } /// from: `android.os.Build$Partition` -class Build_Partition extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Build_Partition extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Build_Partition.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName(r'android/os/Build$Partition'); + static final _class = jni$_.JClass.forName(r'android/os/Build$Partition'); /// The type which includes information such as the signature of this class. static const nullableType = $Build_Partition$NullableType(); @@ -4433,31 +4433,31 @@ class Build_Partition extends _$jni.JObject { /// from: `static public final java.lang.String PARTITION_NAME_SYSTEM` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get PARTITION_NAME_SYSTEM => - _id_PARTITION_NAME_SYSTEM.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get PARTITION_NAME_SYSTEM => + _id_PARTITION_NAME_SYSTEM.get(_class, const jni$_.JStringNullableType()); static final _id_getName = _class.instanceMethodId( r'getName', r'()Ljava/lang/String;', ); - static final _getName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getName()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? getName() { - return _getName(reference.pointer, _id_getName as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getName() { + return _getName(reference.pointer, _id_getName as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getFingerprint = _class.instanceMethodId( @@ -4465,24 +4465,24 @@ class Build_Partition extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getFingerprint = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFingerprint = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getFingerprint()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? getFingerprint() { + jni$_.JString? getFingerprint() { return _getFingerprint( - reference.pointer, _id_getFingerprint as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getFingerprint as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getBuildTimeMillis = _class.instanceMethodId( @@ -4490,22 +4490,22 @@ class Build_Partition extends _$jni.JObject { r'()J', ); - static final _getBuildTimeMillis = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getBuildTimeMillis = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public long getBuildTimeMillis()` int getBuildTimeMillis() { return _getBuildTimeMillis( - reference.pointer, _id_getBuildTimeMillis as _$jni.JMethodIDPtr) + reference.pointer, _id_getBuildTimeMillis as jni$_.JMethodIDPtr) .long; } @@ -4514,23 +4514,23 @@ class Build_Partition extends _$jni.JObject { r'(Ljava/lang/Object;)Z', ); - static final _equals = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _equals = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean equals(java.lang.Object object)` bool equals( - _$jni.JObject? object, + jni$_.JObject? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - return _equals(reference.pointer, _id_equals as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + return _equals(reference.pointer, _id_equals as jni$_.JMethodIDPtr, _$object.pointer) .boolean; } @@ -4540,94 +4540,94 @@ class Build_Partition extends _$jni.JObject { r'()I', ); - static final _hashCode$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _hashCode$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int hashCode()` int hashCode$1() { - return _hashCode$1(reference.pointer, _id_hashCode$1 as _$jni.JMethodIDPtr) + return _hashCode$1(reference.pointer, _id_hashCode$1 as jni$_.JMethodIDPtr) .integer; } } final class $Build_Partition$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Build_Partition$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build$Partition;'; - @_$jni.internal - @_$core.override - Build_Partition? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Build_Partition? fromReference(jni$_.JReference reference) => reference.isNull ? null : Build_Partition.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build_Partition$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build_Partition$NullableType) && other is $Build_Partition$NullableType; } } -final class $Build_Partition$Type extends _$jni.JObjType { - @_$jni.internal +final class $Build_Partition$Type extends jni$_.JObjType { + @jni$_.internal const $Build_Partition$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build$Partition;'; - @_$jni.internal - @_$core.override - Build_Partition fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Build_Partition fromReference(jni$_.JReference reference) => Build_Partition.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Build_Partition$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build_Partition$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build_Partition$Type) && other is $Build_Partition$Type; @@ -4635,18 +4635,18 @@ final class $Build_Partition$Type extends _$jni.JObjType { } /// from: `android.os.Build$VERSION` -class Build_VERSION extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Build_VERSION extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Build_VERSION.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName(r'android/os/Build$VERSION'); + static final _class = jni$_.JClass.forName(r'android/os/Build$VERSION'); /// The type which includes information such as the signature of this class. static const nullableType = $Build_VERSION$NullableType(); @@ -4658,8 +4658,8 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String BASE_OS` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get BASE_OS => - _id_BASE_OS.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get BASE_OS => + _id_BASE_OS.get(_class, const jni$_.JStringNullableType()); static final _id_CODENAME = _class.staticFieldId( r'CODENAME', @@ -4668,8 +4668,8 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String CODENAME` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get CODENAME => - _id_CODENAME.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get CODENAME => + _id_CODENAME.get(_class, const jni$_.JStringNullableType()); static final _id_INCREMENTAL = _class.staticFieldId( r'INCREMENTAL', @@ -4678,8 +4678,8 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String INCREMENTAL` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get INCREMENTAL => - _id_INCREMENTAL.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get INCREMENTAL => + _id_INCREMENTAL.get(_class, const jni$_.JStringNullableType()); static final _id_MEDIA_PERFORMANCE_CLASS = _class.staticFieldId( r'MEDIA_PERFORMANCE_CLASS', @@ -4688,7 +4688,7 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final int MEDIA_PERFORMANCE_CLASS` static int get MEDIA_PERFORMANCE_CLASS => - _id_MEDIA_PERFORMANCE_CLASS.get(_class, const _$jni.jintType()); + _id_MEDIA_PERFORMANCE_CLASS.get(_class, const jni$_.jintType()); static final _id_PREVIEW_SDK_INT = _class.staticFieldId( r'PREVIEW_SDK_INT', @@ -4697,7 +4697,7 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final int PREVIEW_SDK_INT` static int get PREVIEW_SDK_INT => - _id_PREVIEW_SDK_INT.get(_class, const _$jni.jintType()); + _id_PREVIEW_SDK_INT.get(_class, const jni$_.jintType()); static final _id_RELEASE = _class.staticFieldId( r'RELEASE', @@ -4706,8 +4706,8 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String RELEASE` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get RELEASE => - _id_RELEASE.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get RELEASE => + _id_RELEASE.get(_class, const jni$_.JStringNullableType()); static final _id_RELEASE_OR_CODENAME = _class.staticFieldId( r'RELEASE_OR_CODENAME', @@ -4716,8 +4716,8 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String RELEASE_OR_CODENAME` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get RELEASE_OR_CODENAME => - _id_RELEASE_OR_CODENAME.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get RELEASE_OR_CODENAME => + _id_RELEASE_OR_CODENAME.get(_class, const jni$_.JStringNullableType()); static final _id_RELEASE_OR_PREVIEW_DISPLAY = _class.staticFieldId( r'RELEASE_OR_PREVIEW_DISPLAY', @@ -4726,9 +4726,9 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String RELEASE_OR_PREVIEW_DISPLAY` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get RELEASE_OR_PREVIEW_DISPLAY => + static jni$_.JString? get RELEASE_OR_PREVIEW_DISPLAY => _id_RELEASE_OR_PREVIEW_DISPLAY.get( - _class, const _$jni.JStringNullableType()); + _class, const jni$_.JStringNullableType()); static final _id_SDK = _class.staticFieldId( r'SDK', @@ -4737,8 +4737,8 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String SDK` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get SDK => - _id_SDK.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get SDK => + _id_SDK.get(_class, const jni$_.JStringNullableType()); static final _id_SDK_INT = _class.staticFieldId( r'SDK_INT', @@ -4746,7 +4746,7 @@ class Build_VERSION extends _$jni.JObject { ); /// from: `static public final int SDK_INT` - static int get SDK_INT => _id_SDK_INT.get(_class, const _$jni.jintType()); + static int get SDK_INT => _id_SDK_INT.get(_class, const jni$_.jintType()); static final _id_SECURITY_PATCH = _class.staticFieldId( r'SECURITY_PATCH', @@ -4755,102 +4755,102 @@ class Build_VERSION extends _$jni.JObject { /// from: `static public final java.lang.String SECURITY_PATCH` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get SECURITY_PATCH => - _id_SECURITY_PATCH.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get SECURITY_PATCH => + _id_SECURITY_PATCH.get(_class, const jni$_.JStringNullableType()); static final _id_new$ = _class.constructorId( r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Build_VERSION() { return Build_VERSION.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $Build_VERSION$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Build_VERSION$NullableType extends jni$_.JObjType { + @jni$_.internal const $Build_VERSION$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build$VERSION;'; - @_$jni.internal - @_$core.override - Build_VERSION? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Build_VERSION? fromReference(jni$_.JReference reference) => reference.isNull ? null : Build_VERSION.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build_VERSION$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build_VERSION$NullableType) && other is $Build_VERSION$NullableType; } } -final class $Build_VERSION$Type extends _$jni.JObjType { - @_$jni.internal +final class $Build_VERSION$Type extends jni$_.JObjType { + @jni$_.internal const $Build_VERSION$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build$VERSION;'; - @_$jni.internal - @_$core.override - Build_VERSION fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Build_VERSION fromReference(jni$_.JReference reference) => Build_VERSION.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Build_VERSION$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build_VERSION$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build_VERSION$Type) && other is $Build_VERSION$Type; @@ -4858,18 +4858,18 @@ final class $Build_VERSION$Type extends _$jni.JObjType { } /// from: `android.os.Build$VERSION_CODES` -class Build_VERSION_CODES extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Build_VERSION_CODES extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Build_VERSION_CODES.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName(r'android/os/Build$VERSION_CODES'); + static final _class = jni$_.JClass.forName(r'android/os/Build$VERSION_CODES'); /// The type which includes information such as the signature of this class. static const nullableType = $Build_VERSION_CODES$NullableType(); @@ -4986,60 +4986,60 @@ class Build_VERSION_CODES extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Build_VERSION_CODES() { return Build_VERSION_CODES.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } final class $Build_VERSION_CODES$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Build_VERSION_CODES$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build$VERSION_CODES;'; - @_$jni.internal - @_$core.override - Build_VERSION_CODES? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Build_VERSION_CODES? fromReference(jni$_.JReference reference) => reference.isNull ? null : Build_VERSION_CODES.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build_VERSION_CODES$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build_VERSION_CODES$NullableType) && other is $Build_VERSION_CODES$NullableType; @@ -5047,37 +5047,37 @@ final class $Build_VERSION_CODES$NullableType } final class $Build_VERSION_CODES$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Build_VERSION_CODES$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build$VERSION_CODES;'; - @_$jni.internal - @_$core.override - Build_VERSION_CODES fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Build_VERSION_CODES fromReference(jni$_.JReference reference) => Build_VERSION_CODES.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Build_VERSION_CODES$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build_VERSION_CODES$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build_VERSION_CODES$Type) && other is $Build_VERSION_CODES$Type; @@ -5085,18 +5085,18 @@ final class $Build_VERSION_CODES$Type } /// from: `android.os.Build` -class Build extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Build extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Build.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName(r'android/os/Build'); + static final _class = jni$_.JClass.forName(r'android/os/Build'); /// The type which includes information such as the signature of this class. static const nullableType = $Build$NullableType(); @@ -5108,8 +5108,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String BOARD` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get BOARD => - _id_BOARD.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get BOARD => + _id_BOARD.get(_class, const jni$_.JStringNullableType()); static final _id_BOOTLOADER = _class.staticFieldId( r'BOOTLOADER', @@ -5118,8 +5118,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String BOOTLOADER` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get BOOTLOADER => - _id_BOOTLOADER.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get BOOTLOADER => + _id_BOOTLOADER.get(_class, const jni$_.JStringNullableType()); static final _id_BRAND = _class.staticFieldId( r'BRAND', @@ -5128,8 +5128,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String BRAND` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get BRAND => - _id_BRAND.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get BRAND => + _id_BRAND.get(_class, const jni$_.JStringNullableType()); static final _id_CPU_ABI = _class.staticFieldId( r'CPU_ABI', @@ -5138,8 +5138,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String CPU_ABI` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get CPU_ABI => - _id_CPU_ABI.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get CPU_ABI => + _id_CPU_ABI.get(_class, const jni$_.JStringNullableType()); static final _id_CPU_ABI2 = _class.staticFieldId( r'CPU_ABI2', @@ -5148,8 +5148,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String CPU_ABI2` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get CPU_ABI2 => - _id_CPU_ABI2.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get CPU_ABI2 => + _id_CPU_ABI2.get(_class, const jni$_.JStringNullableType()); static final _id_DEVICE = _class.staticFieldId( r'DEVICE', @@ -5158,8 +5158,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String DEVICE` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get DEVICE => - _id_DEVICE.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get DEVICE => + _id_DEVICE.get(_class, const jni$_.JStringNullableType()); static final _id_DISPLAY = _class.staticFieldId( r'DISPLAY', @@ -5168,8 +5168,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String DISPLAY` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get DISPLAY => - _id_DISPLAY.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get DISPLAY => + _id_DISPLAY.get(_class, const jni$_.JStringNullableType()); static final _id_FINGERPRINT = _class.staticFieldId( r'FINGERPRINT', @@ -5178,8 +5178,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String FINGERPRINT` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get FINGERPRINT => - _id_FINGERPRINT.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get FINGERPRINT => + _id_FINGERPRINT.get(_class, const jni$_.JStringNullableType()); static final _id_HARDWARE = _class.staticFieldId( r'HARDWARE', @@ -5188,8 +5188,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String HARDWARE` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get HARDWARE => - _id_HARDWARE.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get HARDWARE => + _id_HARDWARE.get(_class, const jni$_.JStringNullableType()); static final _id_HOST = _class.staticFieldId( r'HOST', @@ -5198,8 +5198,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String HOST` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get HOST => - _id_HOST.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get HOST => + _id_HOST.get(_class, const jni$_.JStringNullableType()); static final _id_ID = _class.staticFieldId( r'ID', @@ -5208,8 +5208,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String ID` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get ID => - _id_ID.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get ID => + _id_ID.get(_class, const jni$_.JStringNullableType()); static final _id_MANUFACTURER = _class.staticFieldId( r'MANUFACTURER', @@ -5218,8 +5218,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String MANUFACTURER` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get MANUFACTURER => - _id_MANUFACTURER.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get MANUFACTURER => + _id_MANUFACTURER.get(_class, const jni$_.JStringNullableType()); static final _id_MODEL = _class.staticFieldId( r'MODEL', @@ -5228,8 +5228,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String MODEL` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get MODEL => - _id_MODEL.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get MODEL => + _id_MODEL.get(_class, const jni$_.JStringNullableType()); static final _id_ODM_SKU = _class.staticFieldId( r'ODM_SKU', @@ -5238,8 +5238,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String ODM_SKU` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get ODM_SKU => - _id_ODM_SKU.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get ODM_SKU => + _id_ODM_SKU.get(_class, const jni$_.JStringNullableType()); static final _id_PRODUCT = _class.staticFieldId( r'PRODUCT', @@ -5248,8 +5248,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String PRODUCT` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get PRODUCT => - _id_PRODUCT.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get PRODUCT => + _id_PRODUCT.get(_class, const jni$_.JStringNullableType()); static final _id_RADIO = _class.staticFieldId( r'RADIO', @@ -5258,8 +5258,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String RADIO` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get RADIO => - _id_RADIO.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get RADIO => + _id_RADIO.get(_class, const jni$_.JStringNullableType()); static final _id_SERIAL = _class.staticFieldId( r'SERIAL', @@ -5268,8 +5268,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String SERIAL` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get SERIAL => - _id_SERIAL.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get SERIAL => + _id_SERIAL.get(_class, const jni$_.JStringNullableType()); static final _id_SKU = _class.staticFieldId( r'SKU', @@ -5278,8 +5278,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String SKU` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get SKU => - _id_SKU.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get SKU => + _id_SKU.get(_class, const jni$_.JStringNullableType()); static final _id_SOC_MANUFACTURER = _class.staticFieldId( r'SOC_MANUFACTURER', @@ -5288,8 +5288,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String SOC_MANUFACTURER` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get SOC_MANUFACTURER => - _id_SOC_MANUFACTURER.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get SOC_MANUFACTURER => + _id_SOC_MANUFACTURER.get(_class, const jni$_.JStringNullableType()); static final _id_SOC_MODEL = _class.staticFieldId( r'SOC_MODEL', @@ -5298,8 +5298,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String SOC_MODEL` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get SOC_MODEL => - _id_SOC_MODEL.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get SOC_MODEL => + _id_SOC_MODEL.get(_class, const jni$_.JStringNullableType()); static final _id_SUPPORTED_32_BIT_ABIS = _class.staticFieldId( r'SUPPORTED_32_BIT_ABIS', @@ -5308,11 +5308,11 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String[] SUPPORTED_32_BIT_ABIS` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray<_$jni.JString?>? get SUPPORTED_32_BIT_ABIS => + static jni$_.JArray? get SUPPORTED_32_BIT_ABIS => _id_SUPPORTED_32_BIT_ABIS.get( _class, - const _$jni.JArrayNullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + const jni$_.JArrayNullableType( + jni$_.JStringNullableType())); static final _id_SUPPORTED_64_BIT_ABIS = _class.staticFieldId( r'SUPPORTED_64_BIT_ABIS', @@ -5321,11 +5321,11 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String[] SUPPORTED_64_BIT_ABIS` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray<_$jni.JString?>? get SUPPORTED_64_BIT_ABIS => + static jni$_.JArray? get SUPPORTED_64_BIT_ABIS => _id_SUPPORTED_64_BIT_ABIS.get( _class, - const _$jni.JArrayNullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + const jni$_.JArrayNullableType( + jni$_.JStringNullableType())); static final _id_SUPPORTED_ABIS = _class.staticFieldId( r'SUPPORTED_ABIS', @@ -5334,11 +5334,11 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String[] SUPPORTED_ABIS` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray<_$jni.JString?>? get SUPPORTED_ABIS => _id_SUPPORTED_ABIS + static jni$_.JArray? get SUPPORTED_ABIS => _id_SUPPORTED_ABIS .get( _class, - const _$jni.JArrayNullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + const jni$_.JArrayNullableType( + jni$_.JStringNullableType())); static final _id_TAGS = _class.staticFieldId( r'TAGS', @@ -5347,8 +5347,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String TAGS` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get TAGS => - _id_TAGS.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get TAGS => + _id_TAGS.get(_class, const jni$_.JStringNullableType()); static final _id_TIME = _class.staticFieldId( r'TIME', @@ -5356,7 +5356,7 @@ class Build extends _$jni.JObject { ); /// from: `static public final long TIME` - static int get TIME => _id_TIME.get(_class, const _$jni.jlongType()); + static int get TIME => _id_TIME.get(_class, const jni$_.jlongType()); static final _id_TYPE = _class.staticFieldId( r'TYPE', @@ -5365,8 +5365,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String TYPE` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get TYPE => - _id_TYPE.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get TYPE => + _id_TYPE.get(_class, const jni$_.JStringNullableType()); static final _id_UNKNOWN = _class.staticFieldId( r'UNKNOWN', @@ -5375,8 +5375,8 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String UNKNOWN` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get UNKNOWN => - _id_UNKNOWN.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get UNKNOWN => + _id_UNKNOWN.get(_class, const jni$_.JStringNullableType()); static final _id_USER = _class.staticFieldId( r'USER', @@ -5385,30 +5385,30 @@ class Build extends _$jni.JObject { /// from: `static public final java.lang.String USER` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get USER => - _id_USER.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get USER => + _id_USER.get(_class, const jni$_.JStringNullableType()); static final _id_new$ = _class.constructorId( r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Build() { return Build.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -5417,24 +5417,24 @@ class Build extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getSerial = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSerial = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public java.lang.String getSerial()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? getSerial() { + static jni$_.JString? getSerial() { return _getSerial( - _class.reference.pointer, _id_getSerial as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _class.reference.pointer, _id_getSerial as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getFingerprintedPartitions = _class.staticMethodId( @@ -5443,25 +5443,25 @@ class Build extends _$jni.JObject { ); static final _getFingerprintedPartitions = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public java.util.List getFingerprintedPartitions()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JList? getFingerprintedPartitions() { + static jni$_.JList? getFingerprintedPartitions() { return _getFingerprintedPartitions(_class.reference.pointer, - _id_getFingerprintedPartitions as _$jni.JMethodIDPtr) - .object<_$jni.JList?>( - const _$jni.JListNullableType( + _id_getFingerprintedPartitions as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JListNullableType( $Build_Partition$NullableType())); } @@ -5470,126 +5470,126 @@ class Build extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getRadioVersion = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getRadioVersion = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public java.lang.String getRadioVersion()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? getRadioVersion() { + static jni$_.JString? getRadioVersion() { return _getRadioVersion( - _class.reference.pointer, _id_getRadioVersion as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _class.reference.pointer, _id_getRadioVersion as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } } -final class $Build$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Build$NullableType extends jni$_.JObjType { + @jni$_.internal const $Build$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build;'; - @_$jni.internal - @_$core.override - Build? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Build? fromReference(jni$_.JReference reference) => reference.isNull ? null : Build.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build$NullableType) && other is $Build$NullableType; } } -final class $Build$Type extends _$jni.JObjType { - @_$jni.internal +final class $Build$Type extends jni$_.JObjType { + @jni$_.internal const $Build$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Landroid/os/Build;'; - @_$jni.internal - @_$core.override - Build fromReference(_$jni.JReference reference) => Build.fromReference( + @jni$_.internal + @core$_.override + Build fromReference(jni$_.JReference reference) => Build.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $Build$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Build$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Build$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Build$Type) && other is $Build$Type; } } /// from: `java.util.HashMap` -class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class HashMap<$K extends jni$_.JObject?, $V extends jni$_.JObject?> + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$K> K; + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal HashMap.fromReference( this.K, this.V, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$K, $V>(K, V), super.fromReference(reference); - static final _class = _$jni.JClass.forName(r'java/util/HashMap'); + static final _class = jni$_.JClass.forName(r'java/util/HashMap'); /// The type which includes information such as the signature of this class. static $HashMap$NullableType<$K, $V> - nullableType<$K extends _$jni.JObject?, $V extends _$jni.JObject?>( - _$jni.JObjType<$K> K, - _$jni.JObjType<$V> V, + nullableType<$K extends jni$_.JObject?, $V extends jni$_.JObject?>( + jni$_.JObjType<$K> K, + jni$_.JObjType<$V> V, ) { return $HashMap$NullableType<$K, $V>( K, @@ -5598,9 +5598,9 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> } static $HashMap$Type<$K, $V> - type<$K extends _$jni.JObject?, $V extends _$jni.JObject?>( - _$jni.JObjType<$K> K, - _$jni.JObjType<$V> V, + type<$K extends jni$_.JObject?, $V extends jni$_.JObject?>( + jni$_.JObjType<$K> K, + jni$_.JObjType<$V> V, ) { return $HashMap$Type<$K, $V>( K, @@ -5612,29 +5612,29 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(IF)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32, _$jni.Double)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32, jni$_.Double)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int, double)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int, double)>(); /// from: `public void (int i, float f)` /// The returned object must be released after use, by calling the [release] method. factory HashMap( int i, double f, { - required _$jni.JObjType<$K> K, - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$K> K, + required jni$_.JObjType<$V> V, }) { return HashMap<$K, $V>.fromReference( K, V, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, i, f) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, i, f) .reference); } @@ -5642,27 +5642,27 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(I)V', ); - static final _new$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_NewObject') + static final _new$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void (int i)` /// The returned object must be released after use, by calling the [release] method. factory HashMap.new$1( int i, { - required _$jni.JObjType<$K> K, - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$K> K, + required jni$_.JObjType<$V> V, }) { return HashMap<$K, $V>.fromReference( K, V, - _new$1(_class.reference.pointer, _id_new$1 as _$jni.JMethodIDPtr, i) + _new$1(_class.reference.pointer, _id_new$1 as jni$_.JMethodIDPtr, i) .reference); } @@ -5670,28 +5670,28 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()V', ); - static final _new$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory HashMap.new$2({ - required _$jni.JObjType<$K> K, - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$K> K, + required jni$_.JObjType<$V> V, }) { return HashMap<$K, $V>.fromReference( K, V, - _new$2(_class.reference.pointer, _id_new$2 as _$jni.JMethodIDPtr) + _new$2(_class.reference.pointer, _id_new$2 as jni$_.JMethodIDPtr) .reference); } @@ -5699,29 +5699,29 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/util/Map;)V', ); - static final _new$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. factory HashMap.new$3( - _$jni.JMap<$K?, $V?>? map, { - required _$jni.JObjType<$K> K, - required _$jni.JObjType<$V> V, + jni$_.JMap<$K?, $V?>? map, { + required jni$_.JObjType<$K> K, + required jni$_.JObjType<$V> V, }) { - final _$map = map?.reference ?? _$jni.jNullReference; + final _$map = map?.reference ?? jni$_.jNullReference; return HashMap<$K, $V>.fromReference( K, V, - _new$3(_class.reference.pointer, _id_new$3 as _$jni.JMethodIDPtr, + _new$3(_class.reference.pointer, _id_new$3 as jni$_.JMethodIDPtr, _$map.pointer) .reference); } @@ -5731,21 +5731,21 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()I', ); - static final _size = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _size = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int size()` int size() { - return _size(reference.pointer, _id_size as _$jni.JMethodIDPtr).integer; + return _size(reference.pointer, _id_size as jni$_.JMethodIDPtr).integer; } static final _id_isEmpty = _class.instanceMethodId( @@ -5753,21 +5753,21 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()Z', ); - static final _isEmpty = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isEmpty = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isEmpty()` bool isEmpty() { - return _isEmpty(reference.pointer, _id_isEmpty as _$jni.JMethodIDPtr) + return _isEmpty(reference.pointer, _id_isEmpty as jni$_.JMethodIDPtr) .boolean; } @@ -5776,25 +5776,25 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _get = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _get = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V get(java.lang.Object object)` /// The returned object must be released after use, by calling the [release] method. $V? get( - _$jni.JObject? object, + jni$_.JObject? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _get( - reference.pointer, _id_get as _$jni.JMethodIDPtr, _$object.pointer) + reference.pointer, _id_get as jni$_.JMethodIDPtr, _$object.pointer) .object<$V?>(V.nullableType); } @@ -5803,24 +5803,24 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;)Z', ); - static final _containsKey = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _containsKey = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean containsKey(java.lang.Object object)` bool containsKey( - _$jni.JObject? object, + jni$_.JObject? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _containsKey(reference.pointer, - _id_containsKey as _$jni.JMethodIDPtr, _$object.pointer) + _id_containsKey as jni$_.JMethodIDPtr, _$object.pointer) .boolean; } @@ -5829,22 +5829,22 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _put = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _put = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V put(K object, V object1)` /// The returned object must be released after use, by calling the [release] method. @@ -5852,9 +5852,9 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> $K? object, $V? object1, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - return _put(reference.pointer, _id_put as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + return _put(reference.pointer, _id_put as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) .object<$V?>(V.nullableType); } @@ -5864,23 +5864,23 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/util/Map;)V', ); - static final _putAll = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _putAll = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void putAll(java.util.Map map)` void putAll( - _$jni.JMap<$K?, $V?>? map, + jni$_.JMap<$K?, $V?>? map, ) { - final _$map = map?.reference ?? _$jni.jNullReference; - _putAll(reference.pointer, _id_putAll as _$jni.JMethodIDPtr, _$map.pointer) + final _$map = map?.reference ?? jni$_.jNullReference; + _putAll(reference.pointer, _id_putAll as jni$_.JMethodIDPtr, _$map.pointer) .check(); } @@ -5889,24 +5889,24 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _remove = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _remove = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V remove(java.lang.Object object)` /// The returned object must be released after use, by calling the [release] method. $V? remove( - _$jni.JObject? object, + jni$_.JObject? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - return _remove(reference.pointer, _id_remove as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + return _remove(reference.pointer, _id_remove as jni$_.JMethodIDPtr, _$object.pointer) .object<$V?>(V.nullableType); } @@ -5916,21 +5916,21 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()V', ); - static final _clear = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _clear = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void clear()` void clear() { - _clear(reference.pointer, _id_clear as _$jni.JMethodIDPtr).check(); + _clear(reference.pointer, _id_clear as jni$_.JMethodIDPtr).check(); } static final _id_containsValue = _class.instanceMethodId( @@ -5938,24 +5938,24 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;)Z', ); - static final _containsValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _containsValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean containsValue(java.lang.Object object)` bool containsValue( - _$jni.JObject? object, + jni$_.JObject? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _containsValue(reference.pointer, - _id_containsValue as _$jni.JMethodIDPtr, _$object.pointer) + _id_containsValue as jni$_.JMethodIDPtr, _$object.pointer) .boolean; } @@ -5964,23 +5964,23 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()Ljava/util/Set;', ); - static final _keySet = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _keySet = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.Set keySet()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JSet<$K?>? keySet() { - return _keySet(reference.pointer, _id_keySet as _$jni.JMethodIDPtr) - .object<_$jni.JSet<$K?>?>(_$jni.JSetNullableType<$K?>(K.nullableType)); + jni$_.JSet<$K?>? keySet() { + return _keySet(reference.pointer, _id_keySet as jni$_.JMethodIDPtr) + .object?>(jni$_.JSetNullableType<$K?>(K.nullableType)); } static final _id_values = _class.instanceMethodId( @@ -5988,23 +5988,23 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()Ljava/util/Collection;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.Collection values()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? values() { - return _values(reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? values() { + return _values(reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_entrySet = _class.instanceMethodId( @@ -6012,25 +6012,25 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()Ljava/util/Set;', ); - static final _entrySet = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _entrySet = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.Set entrySet()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JSet<_$jni.JObject?>? entrySet() { - return _entrySet(reference.pointer, _id_entrySet as _$jni.JMethodIDPtr) - .object<_$jni.JSet<_$jni.JObject?>?>( - const _$jni.JSetNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + jni$_.JSet? entrySet() { + return _entrySet(reference.pointer, _id_entrySet as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JSetNullableType( + jni$_.JObjectNullableType())); } static final _id_getOrDefault = _class.instanceMethodId( @@ -6038,34 +6038,34 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _getOrDefault = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _getOrDefault = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V getOrDefault(java.lang.Object object, V object1)` /// The returned object must be released after use, by calling the [release] method. $V? getOrDefault( - _$jni.JObject? object, + jni$_.JObject? object, $V? object1, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; return _getOrDefault( reference.pointer, - _id_getOrDefault as _$jni.JMethodIDPtr, + _id_getOrDefault as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) .object<$V?>(V.nullableType); @@ -6076,22 +6076,22 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _putIfAbsent = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _putIfAbsent = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V putIfAbsent(K object, V object1)` /// The returned object must be released after use, by calling the [release] method. @@ -6099,11 +6099,11 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> $K? object, $V? object1, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; return _putIfAbsent( reference.pointer, - _id_putIfAbsent as _$jni.JMethodIDPtr, + _id_putIfAbsent as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) .object<$V?>(V.nullableType); @@ -6114,31 +6114,31 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;)Z', ); - static final _remove$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _remove$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public boolean remove(java.lang.Object object, java.lang.Object object1)` bool remove$1( - _$jni.JObject? object, - _$jni.JObject? object1, + jni$_.JObject? object, + jni$_.JObject? object1, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - return _remove$1(reference.pointer, _id_remove$1 as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + return _remove$1(reference.pointer, _id_remove$1 as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) .boolean; } @@ -6148,24 +6148,24 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z', ); - static final _replace = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _replace = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public boolean replace(K object, V object1, V object2)` bool replace( @@ -6173,10 +6173,10 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> $V? object1, $V? object2, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - final _$object2 = object2?.reference ?? _$jni.jNullReference; - return _replace(reference.pointer, _id_replace as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + final _$object2 = object2?.reference ?? jni$_.jNullReference; + return _replace(reference.pointer, _id_replace as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer, _$object2.pointer) .boolean; } @@ -6186,22 +6186,22 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _replace$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _replace$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V replace(K object, V object1)` /// The returned object must be released after use, by calling the [release] method. @@ -6209,9 +6209,9 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> $K? object, $V? object1, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - return _replace$1(reference.pointer, _id_replace$1 as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + return _replace$1(reference.pointer, _id_replace$1 as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) .object<$V?>(V.nullableType); } @@ -6221,34 +6221,34 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;', ); - static final _computeIfAbsent = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _computeIfAbsent = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V computeIfAbsent(K object, java.util.function.Function function)` /// The returned object must be released after use, by calling the [release] method. $V? computeIfAbsent( $K? object, - _$jni.JObject? function, + jni$_.JObject? function, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$function = function?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; + final _$function = function?.reference ?? jni$_.jNullReference; return _computeIfAbsent( reference.pointer, - _id_computeIfAbsent as _$jni.JMethodIDPtr, + _id_computeIfAbsent as jni$_.JMethodIDPtr, _$object.pointer, _$function.pointer) .object<$V?>(V.nullableType); @@ -6259,34 +6259,34 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;', ); - static final _computeIfPresent = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _computeIfPresent = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V computeIfPresent(K object, java.util.function.BiFunction biFunction)` /// The returned object must be released after use, by calling the [release] method. $V? computeIfPresent( $K? object, - _$jni.JObject? biFunction, + jni$_.JObject? biFunction, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$biFunction = biFunction?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; + final _$biFunction = biFunction?.reference ?? jni$_.jNullReference; return _computeIfPresent( reference.pointer, - _id_computeIfPresent as _$jni.JMethodIDPtr, + _id_computeIfPresent as jni$_.JMethodIDPtr, _$object.pointer, _$biFunction.pointer) .object<$V?>(V.nullableType); @@ -6297,32 +6297,32 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;', ); - static final _compute = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _compute = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V compute(K object, java.util.function.BiFunction biFunction)` /// The returned object must be released after use, by calling the [release] method. $V? compute( $K? object, - _$jni.JObject? biFunction, + jni$_.JObject? biFunction, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$biFunction = biFunction?.reference ?? _$jni.jNullReference; - return _compute(reference.pointer, _id_compute as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$biFunction = biFunction?.reference ?? jni$_.jNullReference; + return _compute(reference.pointer, _id_compute as jni$_.JMethodIDPtr, _$object.pointer, _$biFunction.pointer) .object<$V?>(V.nullableType); } @@ -6332,36 +6332,36 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;', ); - static final _merge = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _merge = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V merge(K object, V object1, java.util.function.BiFunction biFunction)` /// The returned object must be released after use, by calling the [release] method. $V? merge( $K? object, $V? object1, - _$jni.JObject? biFunction, + jni$_.JObject? biFunction, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - final _$biFunction = biFunction?.reference ?? _$jni.jNullReference; - return _merge(reference.pointer, _id_merge as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + final _$biFunction = biFunction?.reference ?? jni$_.jNullReference; + return _merge(reference.pointer, _id_merge as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer, _$biFunction.pointer) .object<$V?>(V.nullableType); } @@ -6371,23 +6371,23 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/util/function/BiConsumer;)V', ); - static final _forEach = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _forEach = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void forEach(java.util.function.BiConsumer biConsumer)` void forEach( - _$jni.JObject? biConsumer, + jni$_.JObject? biConsumer, ) { - final _$biConsumer = biConsumer?.reference ?? _$jni.jNullReference; - _forEach(reference.pointer, _id_forEach as _$jni.JMethodIDPtr, + final _$biConsumer = biConsumer?.reference ?? jni$_.jNullReference; + _forEach(reference.pointer, _id_forEach as jni$_.JMethodIDPtr, _$biConsumer.pointer) .check(); } @@ -6397,23 +6397,23 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/util/function/BiFunction;)V', ); - static final _replaceAll = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _replaceAll = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void replaceAll(java.util.function.BiFunction biFunction)` void replaceAll( - _$jni.JObject? biFunction, + jni$_.JObject? biFunction, ) { - final _$biFunction = biFunction?.reference ?? _$jni.jNullReference; - _replaceAll(reference.pointer, _id_replaceAll as _$jni.JMethodIDPtr, + final _$biFunction = biFunction?.reference ?? jni$_.jNullReference; + _replaceAll(reference.pointer, _id_replaceAll as jni$_.JMethodIDPtr, _$biFunction.pointer) .check(); } @@ -6423,23 +6423,23 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()Ljava/lang/Object;', ); - static final _clone = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _clone = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object clone()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? clone() { - return _clone(reference.pointer, _id_clone as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? clone() { + return _clone(reference.pointer, _id_clone as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_newHashMap = _class.staticMethodId( @@ -6447,73 +6447,73 @@ class HashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(I)Ljava/util/HashMap;', ); - static final _newHashMap = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + static final _newHashMap = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `static public java.util.HashMap newHashMap(int i)` /// The returned object must be released after use, by calling the [release] method. static HashMap<$K?, $V?>? - newHashMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?>( + newHashMap<$K extends jni$_.JObject?, $V extends jni$_.JObject?>( int i, { - required _$jni.JObjType<$K> K, - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$K> K, + required jni$_.JObjType<$V> V, }) { return _newHashMap( - _class.reference.pointer, _id_newHashMap as _$jni.JMethodIDPtr, i) + _class.reference.pointer, _id_newHashMap as jni$_.JMethodIDPtr, i) .object?>( $HashMap$NullableType<$K?, $V?>(K.nullableType, V.nullableType)); } } -final class $HashMap$NullableType<$K extends _$jni.JObject?, - $V extends _$jni.JObject?> extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $HashMap$NullableType<$K extends jni$_.JObject?, + $V extends jni$_.JObject?> extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $HashMap$NullableType( this.K, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Ljava/util/HashMap;'; - @_$jni.internal - @_$core.override - HashMap<$K, $V>? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + HashMap<$K, $V>? fromReference(jni$_.JReference reference) => reference.isNull ? null : HashMap<$K, $V>.fromReference( K, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($HashMap$NullableType, K, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($HashMap$NullableType<$K, $V>) && other is $HashMap$NullableType<$K, $V> && @@ -6522,49 +6522,49 @@ final class $HashMap$NullableType<$K extends _$jni.JObject?, } } -final class $HashMap$Type<$K extends _$jni.JObject?, $V extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $HashMap$Type<$K extends jni$_.JObject?, $V extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $HashMap$Type( this.K, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Ljava/util/HashMap;'; - @_$jni.internal - @_$core.override - HashMap<$K, $V> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + HashMap<$K, $V> fromReference(jni$_.JReference reference) => HashMap<$K, $V>.fromReference( K, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $HashMap$NullableType<$K, $V>(K, V); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($HashMap$Type, K, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($HashMap$Type<$K, $V>) && other is $HashMap$Type<$K, $V> && @@ -6574,19 +6574,19 @@ final class $HashMap$Type<$K extends _$jni.JObject?, $V extends _$jni.JObject?> } /// from: `com.example.in_app_java.AndroidUtils` -class AndroidUtils extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class AndroidUtils extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal AndroidUtils.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/example/in_app_java/AndroidUtils'); + jni$_.JClass.forName(r'com/example/in_app_java/AndroidUtils'); /// The type which includes information such as the signature of this class. static const nullableType = $AndroidUtils$NullableType(); @@ -6596,107 +6596,107 @@ class AndroidUtils extends _$jni.JObject { r'(Landroid/app/Activity;Ljava/lang/CharSequence;I)V', ); - static final _showToast = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _showToast = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Int32 + jni$_.Pointer, + jni$_.Pointer, + jni$_.Int32 )>)>>('globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, int)>(); /// from: `static public void showToast(android.app.Activity mainActivity, java.lang.CharSequence text, int duration)` static void showToast( - _$jni.JObject? mainActivity, - _$jni.JObject? text, + jni$_.JObject? mainActivity, + jni$_.JObject? text, int duration, ) { - final _$mainActivity = mainActivity?.reference ?? _$jni.jNullReference; - final _$text = text?.reference ?? _$jni.jNullReference; - _showToast(_class.reference.pointer, _id_showToast as _$jni.JMethodIDPtr, + final _$mainActivity = mainActivity?.reference ?? jni$_.jNullReference; + final _$text = text?.reference ?? jni$_.jNullReference; + _showToast(_class.reference.pointer, _id_showToast as jni$_.JMethodIDPtr, _$mainActivity.pointer, _$text.pointer, duration) .check(); } } -final class $AndroidUtils$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $AndroidUtils$NullableType extends jni$_.JObjType { + @jni$_.internal const $AndroidUtils$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/AndroidUtils;'; - @_$jni.internal - @_$core.override - AndroidUtils? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + AndroidUtils? fromReference(jni$_.JReference reference) => reference.isNull ? null : AndroidUtils.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($AndroidUtils$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($AndroidUtils$NullableType) && other is $AndroidUtils$NullableType; } } -final class $AndroidUtils$Type extends _$jni.JObjType { - @_$jni.internal +final class $AndroidUtils$Type extends jni$_.JObjType { + @jni$_.internal const $AndroidUtils$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/in_app_java/AndroidUtils;'; - @_$jni.internal - @_$core.override - AndroidUtils fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + AndroidUtils fromReference(jni$_.JReference reference) => AndroidUtils.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $AndroidUtils$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($AndroidUtils$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($AndroidUtils$Type) && other is $AndroidUtils$Type; diff --git a/pkgs/jnigen/example/kotlin_plugin/lib/kotlin_bindings.dart b/pkgs/jnigen/example/kotlin_plugin/lib/kotlin_bindings.dart index fceb46300..90448602e 100644 --- a/pkgs/jnigen/example/kotlin_plugin/lib/kotlin_bindings.dart +++ b/pkgs/jnigen/example/kotlin_plugin/lib/kotlin_bindings.dart @@ -30,24 +30,24 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; /// from: `Example` -class Example extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Example extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Example.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName(r'Example'); + static final _class = jni$_.JClass.forName(r'Example'); /// The type which includes information such as the signature of this class. static const nullableType = $Example$NullableType(); @@ -56,23 +56,23 @@ class Example extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Example() { return Example.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -81,107 +81,107 @@ class Example extends _$jni.JObject { r'(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;', ); - static final _thinkBeforeAnswering = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _thinkBeforeAnswering = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.lang.Object thinkBeforeAnswering(kotlin.coroutines.Continuation continuation)` /// The returned object must be released after use, by calling the [release] method. - _$core.Future<_$jni.JString> thinkBeforeAnswering() async { - final $p = _$jni.ReceivePort(); - final _$continuation = _$jni.ProtectedJniExtensions.newPortContinuation($p); + core$_.Future thinkBeforeAnswering() async { + final $p = jni$_.ReceivePort(); + final _$continuation = jni$_.ProtectedJniExtensions.newPortContinuation($p); _thinkBeforeAnswering( reference.pointer, - _id_thinkBeforeAnswering as _$jni.JMethodIDPtr, + _id_thinkBeforeAnswering as jni$_.JMethodIDPtr, _$continuation.pointer) - .object<_$jni.JObject>(const _$jni.JObjectType()); + .object(const jni$_.JObjectType()); _$continuation.release(); final $o = - _$jni.JGlobalReference(_$jni.JObjectPtr.fromAddress(await $p.first)); - final $k = const _$jni.JStringType().jClass.reference; - if (!_$jni.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { + jni$_.JGlobalReference(jni$_.JObjectPtr.fromAddress(await $p.first)); + final $k = const jni$_.JStringType().jClass.reference; + if (!jni$_.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { $k.release(); throw 'Failed'; } $k.release(); - return const _$jni.JStringType().fromReference($o); + return const jni$_.JStringType().fromReference($o); } } -final class $Example$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Example$NullableType extends jni$_.JObjType { + @jni$_.internal const $Example$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'LExample;'; - @_$jni.internal - @_$core.override - Example? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Example? fromReference(jni$_.JReference reference) => reference.isNull ? null : Example.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example$NullableType) && other is $Example$NullableType; } } -final class $Example$Type extends _$jni.JObjType { - @_$jni.internal +final class $Example$Type extends jni$_.JObjType { + @jni$_.internal const $Example$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'LExample;'; - @_$jni.internal - @_$core.override - Example fromReference(_$jni.JReference reference) => Example.fromReference( + @jni$_.internal + @core$_.override + Example fromReference(jni$_.JReference reference) => Example.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $Example$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Example$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example$Type) && other is $Example$Type; } diff --git a/pkgs/jnigen/example/notification_plugin/lib/notifications.dart b/pkgs/jnigen/example/notification_plugin/lib/notifications.dart index bd8455af5..ea874e1da 100644 --- a/pkgs/jnigen/example/notification_plugin/lib/notifications.dart +++ b/pkgs/jnigen/example/notification_plugin/lib/notifications.dart @@ -34,25 +34,25 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; /// from: `com.example.notification_plugin.Notifications` -class Notifications extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Notifications extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Notifications.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/example/notification_plugin/Notifications'); + jni$_.JClass.forName(r'com/example/notification_plugin/Notifications'); /// The type which includes information such as the signature of this class. static const nullableType = $Notifications$NullableType(); @@ -61,23 +61,23 @@ class Notifications extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Notifications() { return Notifications.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -86,40 +86,40 @@ class Notifications extends _$jni.JObject { r'(Landroid/content/Context;ILjava/lang/String;Ljava/lang/String;)V', ); - static final _showNotification = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _showNotification = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Int32, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, int, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public void showNotification(android.content.Context context, int notificationID, java.lang.String title, java.lang.String text)` static void showNotification( - _$jni.JObject? context, + jni$_.JObject? context, int notificationID, - _$jni.JString? title, - _$jni.JString? text, + jni$_.JString? title, + jni$_.JString? text, ) { - final _$context = context?.reference ?? _$jni.jNullReference; - final _$title = title?.reference ?? _$jni.jNullReference; - final _$text = text?.reference ?? _$jni.jNullReference; + final _$context = context?.reference ?? jni$_.jNullReference; + final _$title = title?.reference ?? jni$_.jNullReference; + final _$text = text?.reference ?? jni$_.jNullReference; _showNotification( _class.reference.pointer, - _id_showNotification as _$jni.JMethodIDPtr, + _id_showNotification as jni$_.JMethodIDPtr, _$context.pointer, notificationID, _$title.pointer, @@ -128,74 +128,74 @@ class Notifications extends _$jni.JObject { } } -final class $Notifications$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Notifications$NullableType extends jni$_.JObjType { + @jni$_.internal const $Notifications$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/notification_plugin/Notifications;'; - @_$jni.internal - @_$core.override - Notifications? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Notifications? fromReference(jni$_.JReference reference) => reference.isNull ? null : Notifications.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Notifications$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Notifications$NullableType) && other is $Notifications$NullableType; } } -final class $Notifications$Type extends _$jni.JObjType { - @_$jni.internal +final class $Notifications$Type extends jni$_.JObjType { + @jni$_.internal const $Notifications$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/example/notification_plugin/Notifications;'; - @_$jni.internal - @_$core.override - Notifications fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Notifications fromReference(jni$_.JReference reference) => Notifications.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Notifications$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Notifications$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Notifications$Type) && other is $Notifications$Type; diff --git a/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocument.dart b/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocument.dart index 908e5c0e7..0a3c445e2 100644 --- a/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocument.dart +++ b/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocument.dart @@ -48,31 +48,31 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; -import 'PDDocumentInformation.dart' as pddocumentinformation_; +import 'PDDocumentInformation.dart' as pddocumentinformation$_; /// from: `org.apache.pdfbox.pdmodel.PDDocument` /// /// This is the in-memory representation of the PDF document. /// The \#close() method must be called once the document is no longer needed. ///@author Ben Litchfield -class PDDocument extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class PDDocument extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal PDDocument.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'org/apache/pdfbox/pdmodel/PDDocument'); + jni$_.JClass.forName(r'org/apache/pdfbox/pdmodel/PDDocument'); /// The type which includes information such as the signature of this class. static const nullableType = $PDDocument$NullableType(); @@ -81,16 +81,16 @@ class PDDocument extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` @@ -100,7 +100,7 @@ class PDDocument extends _$jni.JObject { /// You need to add at least one page for the document to be valid. factory PDDocument() { return PDDocument.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -108,16 +108,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/io/MemoryUsageSetting;)V', ); - static final _new$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -126,12 +126,12 @@ class PDDocument extends _$jni.JObject { /// You need to add at least one page for the document to be valid. ///@param memUsageSetting defines how memory is used for buffering PDF streams factory PDDocument.new$1( - _$jni.JObject? memUsageSetting, + jni$_.JObject? memUsageSetting, ) { final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; + memUsageSetting?.reference ?? jni$_.jNullReference; return PDDocument.fromReference(_new$1(_class.reference.pointer, - _id_new$1 as _$jni.JMethodIDPtr, _$memUsageSetting.pointer) + _id_new$1 as jni$_.JMethodIDPtr, _$memUsageSetting.pointer) .reference); } @@ -139,16 +139,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/cos/COSDocument;)V', ); - static final _new$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (org.apache.pdfbox.cos.COSDocument doc)` /// The returned object must be released after use, by calling the [release] method. @@ -156,11 +156,11 @@ class PDDocument extends _$jni.JObject { /// Constructor that uses an existing document. The COSDocument that is passed in must be valid. ///@param doc The COSDocument that this document wraps. factory PDDocument.new$2( - _$jni.JObject? doc, + jni$_.JObject? doc, ) { - final _$doc = doc?.reference ?? _$jni.jNullReference; + final _$doc = doc?.reference ?? jni$_.jNullReference; return PDDocument.fromReference(_new$2(_class.reference.pointer, - _id_new$2 as _$jni.JMethodIDPtr, _$doc.pointer) + _id_new$2 as jni$_.JMethodIDPtr, _$doc.pointer) .reference); } @@ -168,22 +168,22 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/cos/COSDocument;Lorg/apache/pdfbox/io/RandomAccessRead;)V', ); - static final _new$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (org.apache.pdfbox.cos.COSDocument doc, org.apache.pdfbox.io.RandomAccessRead source)` /// The returned object must be released after use, by calling the [release] method. @@ -192,13 +192,13 @@ class PDDocument extends _$jni.JObject { ///@param doc The COSDocument that this document wraps. ///@param source the parser which is used to read the pdf factory PDDocument.new$3( - _$jni.JObject? doc, - _$jni.JObject? source, + jni$_.JObject? doc, + jni$_.JObject? source, ) { - final _$doc = doc?.reference ?? _$jni.jNullReference; - final _$source = source?.reference ?? _$jni.jNullReference; + final _$doc = doc?.reference ?? jni$_.jNullReference; + final _$source = source?.reference ?? jni$_.jNullReference; return PDDocument.fromReference(_new$3(_class.reference.pointer, - _id_new$3 as _$jni.JMethodIDPtr, _$doc.pointer, _$source.pointer) + _id_new$3 as jni$_.JMethodIDPtr, _$doc.pointer, _$source.pointer) .reference); } @@ -206,24 +206,24 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/cos/COSDocument;Lorg/apache/pdfbox/io/RandomAccessRead;Lorg/apache/pdfbox/pdmodel/encryption/AccessPermission;)V', ); - static final _new$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (org.apache.pdfbox.cos.COSDocument doc, org.apache.pdfbox.io.RandomAccessRead source, org.apache.pdfbox.pdmodel.encryption.AccessPermission permission)` /// The returned object must be released after use, by calling the [release] method. @@ -233,16 +233,16 @@ class PDDocument extends _$jni.JObject { ///@param source the parser which is used to read the pdf ///@param permission he access permissions of the pdf factory PDDocument.new$4( - _$jni.JObject? doc, - _$jni.JObject? source, - _$jni.JObject? permission, + jni$_.JObject? doc, + jni$_.JObject? source, + jni$_.JObject? permission, ) { - final _$doc = doc?.reference ?? _$jni.jNullReference; - final _$source = source?.reference ?? _$jni.jNullReference; - final _$permission = permission?.reference ?? _$jni.jNullReference; + final _$doc = doc?.reference ?? jni$_.jNullReference; + final _$source = source?.reference ?? jni$_.jNullReference; + final _$permission = permission?.reference ?? jni$_.jNullReference; return PDDocument.fromReference(_new$4( _class.reference.pointer, - _id_new$4 as _$jni.JMethodIDPtr, + _id_new$4 as jni$_.JMethodIDPtr, _$doc.pointer, _$source.pointer, _$permission.pointer) @@ -254,16 +254,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/PDPage;)V', ); - static final _addPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _addPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void addPage(org.apache.pdfbox.pdmodel.PDPage page)` /// @@ -271,10 +271,10 @@ class PDDocument extends _$jni.JObject { /// hierarchy and set the parent of the page to the root. ///@param page The page to add to the document. void addPage( - _$jni.JObject? page, + jni$_.JObject? page, ) { - final _$page = page?.reference ?? _$jni.jNullReference; - _addPage(reference.pointer, _id_addPage as _$jni.JMethodIDPtr, + final _$page = page?.reference ?? jni$_.jNullReference; + _addPage(reference.pointer, _id_addPage as jni$_.JMethodIDPtr, _$page.pointer) .check(); } @@ -284,16 +284,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/PDSignature;)V', ); - static final _addSignature = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _addSignature = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void addSignature(org.apache.pdfbox.pdmodel.interactive.digitalsignature.PDSignature sigObject)` /// @@ -308,10 +308,10 @@ class PDDocument extends _$jni.JObject { ///@throws IllegalStateException if one attempts to add several signature /// fields. void addSignature( - _$jni.JObject? sigObject, + jni$_.JObject? sigObject, ) { - final _$sigObject = sigObject?.reference ?? _$jni.jNullReference; - _addSignature(reference.pointer, _id_addSignature as _$jni.JMethodIDPtr, + final _$sigObject = sigObject?.reference ?? jni$_.jNullReference; + _addSignature(reference.pointer, _id_addSignature as jni$_.JMethodIDPtr, _$sigObject.pointer) .check(); } @@ -321,22 +321,22 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/PDSignature;Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/SignatureOptions;)V', ); - static final _addSignature$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _addSignature$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void addSignature(org.apache.pdfbox.pdmodel.interactive.digitalsignature.PDSignature sigObject, org.apache.pdfbox.pdmodel.interactive.digitalsignature.SignatureOptions options)` /// @@ -352,12 +352,12 @@ class PDDocument extends _$jni.JObject { ///@throws IllegalStateException if one attempts to add several signature /// fields. void addSignature$1( - _$jni.JObject? sigObject, - _$jni.JObject? options, + jni$_.JObject? sigObject, + jni$_.JObject? options, ) { - final _$sigObject = sigObject?.reference ?? _$jni.jNullReference; - final _$options = options?.reference ?? _$jni.jNullReference; - _addSignature$1(reference.pointer, _id_addSignature$1 as _$jni.JMethodIDPtr, + final _$sigObject = sigObject?.reference ?? jni$_.jNullReference; + final _$options = options?.reference ?? jni$_.jNullReference; + _addSignature$1(reference.pointer, _id_addSignature$1 as jni$_.JMethodIDPtr, _$sigObject.pointer, _$options.pointer) .check(); } @@ -367,22 +367,22 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/PDSignature;Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/SignatureInterface;)V', ); - static final _addSignature$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _addSignature$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void addSignature(org.apache.pdfbox.pdmodel.interactive.digitalsignature.PDSignature sigObject, org.apache.pdfbox.pdmodel.interactive.digitalsignature.SignatureInterface signatureInterface)` /// @@ -397,13 +397,13 @@ class PDDocument extends _$jni.JObject { ///@throws IllegalStateException if one attempts to add several signature /// fields. void addSignature$2( - _$jni.JObject? sigObject, - _$jni.JObject? signatureInterface, + jni$_.JObject? sigObject, + jni$_.JObject? signatureInterface, ) { - final _$sigObject = sigObject?.reference ?? _$jni.jNullReference; + final _$sigObject = sigObject?.reference ?? jni$_.jNullReference; final _$signatureInterface = - signatureInterface?.reference ?? _$jni.jNullReference; - _addSignature$2(reference.pointer, _id_addSignature$2 as _$jni.JMethodIDPtr, + signatureInterface?.reference ?? jni$_.jNullReference; + _addSignature$2(reference.pointer, _id_addSignature$2 as jni$_.JMethodIDPtr, _$sigObject.pointer, _$signatureInterface.pointer) .check(); } @@ -413,24 +413,24 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/PDSignature;Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/SignatureInterface;Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/SignatureOptions;)V', ); - static final _addSignature$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _addSignature$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void addSignature(org.apache.pdfbox.pdmodel.interactive.digitalsignature.PDSignature sigObject, org.apache.pdfbox.pdmodel.interactive.digitalsignature.SignatureInterface signatureInterface, org.apache.pdfbox.pdmodel.interactive.digitalsignature.SignatureOptions options)` /// @@ -448,17 +448,17 @@ class PDDocument extends _$jni.JObject { ///@throws IllegalStateException if one attempts to add several signature /// fields. void addSignature$3( - _$jni.JObject? sigObject, - _$jni.JObject? signatureInterface, - _$jni.JObject? options, + jni$_.JObject? sigObject, + jni$_.JObject? signatureInterface, + jni$_.JObject? options, ) { - final _$sigObject = sigObject?.reference ?? _$jni.jNullReference; + final _$sigObject = sigObject?.reference ?? jni$_.jNullReference; final _$signatureInterface = - signatureInterface?.reference ?? _$jni.jNullReference; - final _$options = options?.reference ?? _$jni.jNullReference; + signatureInterface?.reference ?? jni$_.jNullReference; + final _$options = options?.reference ?? jni$_.jNullReference; _addSignature$3( reference.pointer, - _id_addSignature$3 as _$jni.JMethodIDPtr, + _id_addSignature$3 as jni$_.JMethodIDPtr, _$sigObject.pointer, _$signatureInterface.pointer, _$options.pointer) @@ -470,24 +470,24 @@ class PDDocument extends _$jni.JObject { r'(Ljava/util/List;Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/SignatureInterface;Lorg/apache/pdfbox/pdmodel/interactive/digitalsignature/SignatureOptions;)V', ); - static final _addSignatureField = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _addSignatureField = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void addSignatureField(java.util.List sigFields, org.apache.pdfbox.pdmodel.interactive.digitalsignature.SignatureInterface signatureInterface, org.apache.pdfbox.pdmodel.interactive.digitalsignature.SignatureOptions options)` /// @@ -500,17 +500,17 @@ class PDDocument extends _$jni.JObject { ///@deprecated The method is misleading, because only one signature may be /// added in a document. The method will be removed in the future. void addSignatureField( - _$jni.JList<_$jni.JObject?>? sigFields, - _$jni.JObject? signatureInterface, - _$jni.JObject? options, + jni$_.JList? sigFields, + jni$_.JObject? signatureInterface, + jni$_.JObject? options, ) { - final _$sigFields = sigFields?.reference ?? _$jni.jNullReference; + final _$sigFields = sigFields?.reference ?? jni$_.jNullReference; final _$signatureInterface = - signatureInterface?.reference ?? _$jni.jNullReference; - final _$options = options?.reference ?? _$jni.jNullReference; + signatureInterface?.reference ?? jni$_.jNullReference; + final _$options = options?.reference ?? jni$_.jNullReference; _addSignatureField( reference.pointer, - _id_addSignatureField as _$jni.JMethodIDPtr, + _id_addSignatureField as jni$_.JMethodIDPtr, _$sigFields.pointer, _$signatureInterface.pointer, _$options.pointer) @@ -522,26 +522,26 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/PDPage;)V', ); - static final _removePage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _removePage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void removePage(org.apache.pdfbox.pdmodel.PDPage page)` /// /// Remove the page from the document. ///@param page The page to remove from the document. void removePage( - _$jni.JObject? page, + jni$_.JObject? page, ) { - final _$page = page?.reference ?? _$jni.jNullReference; - _removePage(reference.pointer, _id_removePage as _$jni.JMethodIDPtr, + final _$page = page?.reference ?? jni$_.jNullReference; + _removePage(reference.pointer, _id_removePage as jni$_.JMethodIDPtr, _$page.pointer) .check(); } @@ -551,15 +551,15 @@ class PDDocument extends _$jni.JObject { r'(I)V', ); - static final _removePage$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _removePage$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void removePage(int pageNumber)` /// @@ -568,7 +568,7 @@ class PDDocument extends _$jni.JObject { void removePage$1( int pageNumber, ) { - _removePage$1(reference.pointer, _id_removePage$1 as _$jni.JMethodIDPtr, + _removePage$1(reference.pointer, _id_removePage$1 as jni$_.JMethodIDPtr, pageNumber) .check(); } @@ -578,16 +578,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/PDPage;)Lorg/apache/pdfbox/pdmodel/PDPage;', ); - static final _importPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _importPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public org.apache.pdfbox.pdmodel.PDPage importPage(org.apache.pdfbox.pdmodel.PDPage page)` /// The returned object must be released after use, by calling the [release] method. @@ -613,13 +613,13 @@ class PDDocument extends _$jni.JObject { ///@param page The page to import. ///@return The page that was imported. ///@throws IOException If there is an error copying the page. - _$jni.JObject? importPage( - _$jni.JObject? page, + jni$_.JObject? importPage( + jni$_.JObject? page, ) { - final _$page = page?.reference ?? _$jni.jNullReference; - return _importPage(reference.pointer, _id_importPage as _$jni.JMethodIDPtr, + final _$page = page?.reference ?? jni$_.jNullReference; + return _importPage(reference.pointer, _id_importPage as jni$_.JMethodIDPtr, _$page.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_getDocument = _class.instanceMethodId( @@ -627,16 +627,16 @@ class PDDocument extends _$jni.JObject { r'()Lorg/apache/pdfbox/cos/COSDocument;', ); - static final _getDocument = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getDocument = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.cos.COSDocument getDocument()` @@ -644,10 +644,10 @@ class PDDocument extends _$jni.JObject { /// /// This will get the low level document. ///@return The document that this layer sits on top of. - _$jni.JObject? getDocument() { + jni$_.JObject? getDocument() { return _getDocument( - reference.pointer, _id_getDocument as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getDocument as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getDocumentInformation = _class.instanceMethodId( @@ -655,16 +655,16 @@ class PDDocument extends _$jni.JObject { r'()Lorg/apache/pdfbox/pdmodel/PDDocumentInformation;', ); - static final _getDocumentInformation = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getDocumentInformation = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.PDDocumentInformation getDocumentInformation()` @@ -677,11 +677,12 @@ class PDDocument extends _$jni.JObject { /// document level metadata, a metadata stream should be used instead, see /// PDDocumentCatalog\#getMetadata(). ///@return The documents /Info dictionary, never null. - pddocumentinformation_.PDDocumentInformation? getDocumentInformation() { + pddocumentinformation$_.PDDocumentInformation? getDocumentInformation() { return _getDocumentInformation( - reference.pointer, _id_getDocumentInformation as _$jni.JMethodIDPtr) - .object( - const pddocumentinformation_.$PDDocumentInformation$NullableType()); + reference.pointer, _id_getDocumentInformation as jni$_.JMethodIDPtr) + .object( + const pddocumentinformation$_ + .$PDDocumentInformation$NullableType()); } static final _id_setDocumentInformation = _class.instanceMethodId( @@ -689,16 +690,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/PDDocumentInformation;)V', ); - static final _setDocumentInformation = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setDocumentInformation = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setDocumentInformation(org.apache.pdfbox.pdmodel.PDDocumentInformation info)` /// @@ -709,11 +710,11 @@ class PDDocument extends _$jni.JObject { /// PDDocumentCatalog\#setMetadata(org.apache.pdfbox.pdmodel.common.PDMetadata) PDDocumentCatalog\#setMetadata(PDMetadata). ///@param info The updated document information. void setDocumentInformation( - pddocumentinformation_.PDDocumentInformation? info, + pddocumentinformation$_.PDDocumentInformation? info, ) { - final _$info = info?.reference ?? _$jni.jNullReference; + final _$info = info?.reference ?? jni$_.jNullReference; _setDocumentInformation(reference.pointer, - _id_setDocumentInformation as _$jni.JMethodIDPtr, _$info.pointer) + _id_setDocumentInformation as jni$_.JMethodIDPtr, _$info.pointer) .check(); } @@ -722,16 +723,16 @@ class PDDocument extends _$jni.JObject { r'()Lorg/apache/pdfbox/pdmodel/PDDocumentCatalog;', ); - static final _getDocumentCatalog = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getDocumentCatalog = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.PDDocumentCatalog getDocumentCatalog()` @@ -739,10 +740,10 @@ class PDDocument extends _$jni.JObject { /// /// This will get the document CATALOG. This is guaranteed to not return null. ///@return The documents /Root dictionary - _$jni.JObject? getDocumentCatalog() { + jni$_.JObject? getDocumentCatalog() { return _getDocumentCatalog( - reference.pointer, _id_getDocumentCatalog as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getDocumentCatalog as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_isEncrypted = _class.instanceMethodId( @@ -750,16 +751,16 @@ class PDDocument extends _$jni.JObject { r'()Z', ); - static final _isEncrypted = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isEncrypted = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isEncrypted()` @@ -768,7 +769,7 @@ class PDDocument extends _$jni.JObject { ///@return true If this document is encrypted. bool isEncrypted() { return _isEncrypted( - reference.pointer, _id_isEncrypted as _$jni.JMethodIDPtr) + reference.pointer, _id_isEncrypted as jni$_.JMethodIDPtr) .boolean; } @@ -777,16 +778,16 @@ class PDDocument extends _$jni.JObject { r'()Lorg/apache/pdfbox/pdmodel/encryption/PDEncryption;', ); - static final _getEncryption = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getEncryption = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.encryption.PDEncryption getEncryption()` @@ -797,10 +798,10 @@ class PDDocument extends _$jni.JObject { /// but the only supported subclass at this time is a /// PDStandardEncryption object. ///@return The encryption dictionary(most likely a PDStandardEncryption object) - _$jni.JObject? getEncryption() { + jni$_.JObject? getEncryption() { return _getEncryption( - reference.pointer, _id_getEncryption as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getEncryption as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setEncryptionDictionary = _class.instanceMethodId( @@ -808,16 +809,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/encryption/PDEncryption;)V', ); - static final _setEncryptionDictionary = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setEncryptionDictionary = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setEncryptionDictionary(org.apache.pdfbox.pdmodel.encryption.PDEncryption encryption)` /// @@ -825,12 +826,12 @@ class PDDocument extends _$jni.JObject { ///@param encryption The encryption dictionary(most likely a PDStandardEncryption object) ///@throws IOException If there is an error determining which security handler to use. void setEncryptionDictionary( - _$jni.JObject? encryption, + jni$_.JObject? encryption, ) { - final _$encryption = encryption?.reference ?? _$jni.jNullReference; + final _$encryption = encryption?.reference ?? jni$_.jNullReference; _setEncryptionDictionary( reference.pointer, - _id_setEncryptionDictionary as _$jni.JMethodIDPtr, + _id_setEncryptionDictionary as jni$_.JMethodIDPtr, _$encryption.pointer) .check(); } @@ -841,16 +842,16 @@ class PDDocument extends _$jni.JObject { ); static final _getLastSignatureDictionary = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.interactive.digitalsignature.PDSignature getLastSignatureDictionary()` @@ -860,10 +861,10 @@ class PDDocument extends _$jni.JObject { /// last in time when empty signature fields are created first but signed after other fields. ///@return the last signature as PDSignatureField. ///@throws IOException if no document catalog can be found. - _$jni.JObject? getLastSignatureDictionary() { + jni$_.JObject? getLastSignatureDictionary() { return _getLastSignatureDictionary(reference.pointer, - _id_getLastSignatureDictionary as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_getLastSignatureDictionary as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getSignatureFields = _class.instanceMethodId( @@ -871,16 +872,16 @@ class PDDocument extends _$jni.JObject { r'()Ljava/util/List;', ); - static final _getSignatureFields = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSignatureFields = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List getSignatureFields()` @@ -889,12 +890,12 @@ class PDDocument extends _$jni.JObject { /// Retrieve all signature fields from the document. ///@return a List of PDSignatureFields ///@throws IOException if no document catalog can be found. - _$jni.JList<_$jni.JObject?>? getSignatureFields() { + jni$_.JList? getSignatureFields() { return _getSignatureFields( - reference.pointer, _id_getSignatureFields as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JObject?>?>( - const _$jni.JListNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + reference.pointer, _id_getSignatureFields as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JListNullableType( + jni$_.JObjectNullableType())); } static final _id_getSignatureDictionaries = _class.instanceMethodId( @@ -902,16 +903,16 @@ class PDDocument extends _$jni.JObject { r'()Ljava/util/List;', ); - static final _getSignatureDictionaries = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSignatureDictionaries = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List getSignatureDictionaries()` @@ -920,12 +921,12 @@ class PDDocument extends _$jni.JObject { /// Retrieve all signature dictionaries from the document. ///@return a List of PDSignatureFields ///@throws IOException if no document catalog can be found. - _$jni.JList<_$jni.JObject?>? getSignatureDictionaries() { + jni$_.JList? getSignatureDictionaries() { return _getSignatureDictionaries(reference.pointer, - _id_getSignatureDictionaries as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JObject?>?>( - const _$jni.JListNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + _id_getSignatureDictionaries as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JListNullableType( + jni$_.JObjectNullableType())); } static final _id_registerTrueTypeFontForClosing = _class.instanceMethodId( @@ -934,16 +935,16 @@ class PDDocument extends _$jni.JObject { ); static final _registerTrueTypeFontForClosing = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void registerTrueTypeFontForClosing(org.apache.fontbox.ttf.TrueTypeFont ttf)` /// @@ -952,12 +953,12 @@ class PDDocument extends _$jni.JObject { /// method, it is done by the appropriate PDFont classes. ///@param ttf void registerTrueTypeFontForClosing( - _$jni.JObject? ttf, + jni$_.JObject? ttf, ) { - final _$ttf = ttf?.reference ?? _$jni.jNullReference; + final _$ttf = ttf?.reference ?? jni$_.jNullReference; _registerTrueTypeFontForClosing( reference.pointer, - _id_registerTrueTypeFontForClosing as _$jni.JMethodIDPtr, + _id_registerTrueTypeFontForClosing as jni$_.JMethodIDPtr, _$ttf.pointer) .check(); } @@ -967,16 +968,16 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/File;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _load = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.File file)` /// The returned object must be released after use, by calling the [release] method. @@ -987,10 +988,10 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the file required a non-empty password. ///@throws IOException in case of a file reading or parsing error static PDDocument? load( - _$jni.JObject? file, + jni$_.JObject? file, ) { - final _$file = file?.reference ?? _$jni.jNullReference; - return _load(_class.reference.pointer, _id_load as _$jni.JMethodIDPtr, + final _$file = file?.reference ?? jni$_.jNullReference; + return _load(_class.reference.pointer, _id_load as jni$_.JMethodIDPtr, _$file.pointer) .object(const $PDDocument$NullableType()); } @@ -1000,22 +1001,22 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/File;Lorg/apache/pdfbox/io/MemoryUsageSetting;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.File file, org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -1027,13 +1028,13 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the file required a non-empty password. ///@throws IOException in case of a file reading or parsing error static PDDocument? load$1( - _$jni.JObject? file, - _$jni.JObject? memUsageSetting, + jni$_.JObject? file, + jni$_.JObject? memUsageSetting, ) { - final _$file = file?.reference ?? _$jni.jNullReference; + final _$file = file?.reference ?? jni$_.jNullReference; final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; - return _load$1(_class.reference.pointer, _id_load$1 as _$jni.JMethodIDPtr, + memUsageSetting?.reference ?? jni$_.jNullReference; + return _load$1(_class.reference.pointer, _id_load$1 as jni$_.JMethodIDPtr, _$file.pointer, _$memUsageSetting.pointer) .object(const $PDDocument$NullableType()); } @@ -1043,22 +1044,22 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/File;Ljava/lang/String;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.File file, java.lang.String password)` /// The returned object must be released after use, by calling the [release] method. @@ -1070,12 +1071,12 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException in case of a file reading or parsing error static PDDocument? load$2( - _$jni.JObject? file, - _$jni.JString? password, + jni$_.JObject? file, + jni$_.JString? password, ) { - final _$file = file?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - return _load$2(_class.reference.pointer, _id_load$2 as _$jni.JMethodIDPtr, + final _$file = file?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + return _load$2(_class.reference.pointer, _id_load$2 as jni$_.JMethodIDPtr, _$file.pointer, _$password.pointer) .object(const $PDDocument$NullableType()); } @@ -1085,24 +1086,24 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/File;Ljava/lang/String;Lorg/apache/pdfbox/io/MemoryUsageSetting;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.File file, java.lang.String password, org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -1115,15 +1116,15 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException in case of a file reading or parsing error static PDDocument? load$3( - _$jni.JObject? file, - _$jni.JString? password, - _$jni.JObject? memUsageSetting, + jni$_.JObject? file, + jni$_.JString? password, + jni$_.JObject? memUsageSetting, ) { - final _$file = file?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; + final _$file = file?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; - return _load$3(_class.reference.pointer, _id_load$3 as _$jni.JMethodIDPtr, + memUsageSetting?.reference ?? jni$_.jNullReference; + return _load$3(_class.reference.pointer, _id_load$3 as jni$_.JMethodIDPtr, _$file.pointer, _$password.pointer, _$memUsageSetting.pointer) .object(const $PDDocument$NullableType()); } @@ -1133,26 +1134,26 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/File;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.File file, java.lang.String password, java.io.InputStream keyStore, java.lang.String alias)` /// The returned object must be released after use, by calling the [release] method. @@ -1165,18 +1166,18 @@ class PDDocument extends _$jni.JObject { ///@return loaded document ///@throws IOException in case of a file reading or parsing error static PDDocument? load$4( - _$jni.JObject? file, - _$jni.JString? password, - _$jni.JObject? keyStore, - _$jni.JString? alias, + jni$_.JObject? file, + jni$_.JString? password, + jni$_.JObject? keyStore, + jni$_.JString? alias, ) { - final _$file = file?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - final _$keyStore = keyStore?.reference ?? _$jni.jNullReference; - final _$alias = alias?.reference ?? _$jni.jNullReference; + final _$file = file?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + final _$keyStore = keyStore?.reference ?? jni$_.jNullReference; + final _$alias = alias?.reference ?? jni$_.jNullReference; return _load$4( _class.reference.pointer, - _id_load$4 as _$jni.JMethodIDPtr, + _id_load$4 as jni$_.JMethodIDPtr, _$file.pointer, _$password.pointer, _$keyStore.pointer, @@ -1189,28 +1190,28 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/File;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lorg/apache/pdfbox/io/MemoryUsageSetting;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$5 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$5 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.File file, java.lang.String password, java.io.InputStream keyStore, java.lang.String alias, org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -1224,21 +1225,21 @@ class PDDocument extends _$jni.JObject { ///@return loaded document ///@throws IOException in case of a file reading or parsing error static PDDocument? load$5( - _$jni.JObject? file, - _$jni.JString? password, - _$jni.JObject? keyStore, - _$jni.JString? alias, - _$jni.JObject? memUsageSetting, + jni$_.JObject? file, + jni$_.JString? password, + jni$_.JObject? keyStore, + jni$_.JString? alias, + jni$_.JObject? memUsageSetting, ) { - final _$file = file?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - final _$keyStore = keyStore?.reference ?? _$jni.jNullReference; - final _$alias = alias?.reference ?? _$jni.jNullReference; + final _$file = file?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + final _$keyStore = keyStore?.reference ?? jni$_.jNullReference; + final _$alias = alias?.reference ?? jni$_.jNullReference; final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; + memUsageSetting?.reference ?? jni$_.jNullReference; return _load$5( _class.reference.pointer, - _id_load$5 as _$jni.JMethodIDPtr, + _id_load$5 as jni$_.JMethodIDPtr, _$file.pointer, _$password.pointer, _$keyStore.pointer, @@ -1252,16 +1253,16 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/InputStream;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$6 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _load$6 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.InputStream input)` /// The returned object must be released after use, by calling the [release] method. @@ -1273,10 +1274,10 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the PDF required a non-empty password. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$6( - _$jni.JObject? input, + jni$_.JObject? input, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - return _load$6(_class.reference.pointer, _id_load$6 as _$jni.JMethodIDPtr, + final _$input = input?.reference ?? jni$_.jNullReference; + return _load$6(_class.reference.pointer, _id_load$6 as jni$_.JMethodIDPtr, _$input.pointer) .object(const $PDDocument$NullableType()); } @@ -1286,22 +1287,22 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/InputStream;Lorg/apache/pdfbox/io/MemoryUsageSetting;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$7 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$7 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.InputStream input, org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -1314,13 +1315,13 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the PDF required a non-empty password. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$7( - _$jni.JObject? input, - _$jni.JObject? memUsageSetting, + jni$_.JObject? input, + jni$_.JObject? memUsageSetting, ) { - final _$input = input?.reference ?? _$jni.jNullReference; + final _$input = input?.reference ?? jni$_.jNullReference; final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; - return _load$7(_class.reference.pointer, _id_load$7 as _$jni.JMethodIDPtr, + memUsageSetting?.reference ?? jni$_.jNullReference; + return _load$7(_class.reference.pointer, _id_load$7 as jni$_.JMethodIDPtr, _$input.pointer, _$memUsageSetting.pointer) .object(const $PDDocument$NullableType()); } @@ -1330,22 +1331,22 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/InputStream;Ljava/lang/String;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$8 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$8 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.InputStream input, java.lang.String password)` /// The returned object must be released after use, by calling the [release] method. @@ -1358,12 +1359,12 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$8( - _$jni.JObject? input, - _$jni.JString? password, + jni$_.JObject? input, + jni$_.JString? password, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - return _load$8(_class.reference.pointer, _id_load$8 as _$jni.JMethodIDPtr, + final _$input = input?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + return _load$8(_class.reference.pointer, _id_load$8 as jni$_.JMethodIDPtr, _$input.pointer, _$password.pointer) .object(const $PDDocument$NullableType()); } @@ -1373,26 +1374,26 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/InputStream;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$9 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$9 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.InputStream input, java.lang.String password, java.io.InputStream keyStore, java.lang.String alias)` /// The returned object must be released after use, by calling the [release] method. @@ -1406,18 +1407,18 @@ class PDDocument extends _$jni.JObject { ///@return loaded document ///@throws IOException In case of a reading or parsing error. static PDDocument? load$9( - _$jni.JObject? input, - _$jni.JString? password, - _$jni.JObject? keyStore, - _$jni.JString? alias, + jni$_.JObject? input, + jni$_.JString? password, + jni$_.JObject? keyStore, + jni$_.JString? alias, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - final _$keyStore = keyStore?.reference ?? _$jni.jNullReference; - final _$alias = alias?.reference ?? _$jni.jNullReference; + final _$input = input?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + final _$keyStore = keyStore?.reference ?? jni$_.jNullReference; + final _$alias = alias?.reference ?? jni$_.jNullReference; return _load$9( _class.reference.pointer, - _id_load$9 as _$jni.JMethodIDPtr, + _id_load$9 as jni$_.JMethodIDPtr, _$input.pointer, _$password.pointer, _$keyStore.pointer, @@ -1430,24 +1431,24 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/InputStream;Ljava/lang/String;Lorg/apache/pdfbox/io/MemoryUsageSetting;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$10 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$10 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.InputStream input, java.lang.String password, org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -1461,15 +1462,15 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$10( - _$jni.JObject? input, - _$jni.JString? password, - _$jni.JObject? memUsageSetting, + jni$_.JObject? input, + jni$_.JString? password, + jni$_.JObject? memUsageSetting, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; + final _$input = input?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; - return _load$10(_class.reference.pointer, _id_load$10 as _$jni.JMethodIDPtr, + memUsageSetting?.reference ?? jni$_.jNullReference; + return _load$10(_class.reference.pointer, _id_load$10 as jni$_.JMethodIDPtr, _$input.pointer, _$password.pointer, _$memUsageSetting.pointer) .object(const $PDDocument$NullableType()); } @@ -1479,28 +1480,28 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/InputStream;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lorg/apache/pdfbox/io/MemoryUsageSetting;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$11 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$11 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(java.io.InputStream input, java.lang.String password, java.io.InputStream keyStore, java.lang.String alias, org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -1516,21 +1517,21 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$11( - _$jni.JObject? input, - _$jni.JString? password, - _$jni.JObject? keyStore, - _$jni.JString? alias, - _$jni.JObject? memUsageSetting, + jni$_.JObject? input, + jni$_.JString? password, + jni$_.JObject? keyStore, + jni$_.JString? alias, + jni$_.JObject? memUsageSetting, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - final _$keyStore = keyStore?.reference ?? _$jni.jNullReference; - final _$alias = alias?.reference ?? _$jni.jNullReference; + final _$input = input?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + final _$keyStore = keyStore?.reference ?? jni$_.jNullReference; + final _$alias = alias?.reference ?? jni$_.jNullReference; final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; + memUsageSetting?.reference ?? jni$_.jNullReference; return _load$11( _class.reference.pointer, - _id_load$11 as _$jni.JMethodIDPtr, + _id_load$11 as jni$_.JMethodIDPtr, _$input.pointer, _$password.pointer, _$keyStore.pointer, @@ -1544,16 +1545,16 @@ class PDDocument extends _$jni.JObject { r'([B)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$12 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _load$12 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(byte[] input)` /// The returned object must be released after use, by calling the [release] method. @@ -1564,10 +1565,10 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the PDF required a non-empty password. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$12( - _$jni.JArray<_$jni.jbyte>? input, + jni$_.JArray? input, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - return _load$12(_class.reference.pointer, _id_load$12 as _$jni.JMethodIDPtr, + final _$input = input?.reference ?? jni$_.jNullReference; + return _load$12(_class.reference.pointer, _id_load$12 as jni$_.JMethodIDPtr, _$input.pointer) .object(const $PDDocument$NullableType()); } @@ -1577,22 +1578,22 @@ class PDDocument extends _$jni.JObject { r'([BLjava/lang/String;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$13 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$13 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(byte[] input, java.lang.String password)` /// The returned object must be released after use, by calling the [release] method. @@ -1604,12 +1605,12 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$13( - _$jni.JArray<_$jni.jbyte>? input, - _$jni.JString? password, + jni$_.JArray? input, + jni$_.JString? password, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - return _load$13(_class.reference.pointer, _id_load$13 as _$jni.JMethodIDPtr, + final _$input = input?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + return _load$13(_class.reference.pointer, _id_load$13 as jni$_.JMethodIDPtr, _$input.pointer, _$password.pointer) .object(const $PDDocument$NullableType()); } @@ -1619,26 +1620,26 @@ class PDDocument extends _$jni.JObject { r'([BLjava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$14 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$14 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(byte[] input, java.lang.String password, java.io.InputStream keyStore, java.lang.String alias)` /// The returned object must be released after use, by calling the [release] method. @@ -1652,18 +1653,18 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$14( - _$jni.JArray<_$jni.jbyte>? input, - _$jni.JString? password, - _$jni.JObject? keyStore, - _$jni.JString? alias, + jni$_.JArray? input, + jni$_.JString? password, + jni$_.JObject? keyStore, + jni$_.JString? alias, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - final _$keyStore = keyStore?.reference ?? _$jni.jNullReference; - final _$alias = alias?.reference ?? _$jni.jNullReference; + final _$input = input?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + final _$keyStore = keyStore?.reference ?? jni$_.jNullReference; + final _$alias = alias?.reference ?? jni$_.jNullReference; return _load$14( _class.reference.pointer, - _id_load$14 as _$jni.JMethodIDPtr, + _id_load$14 as jni$_.JMethodIDPtr, _$input.pointer, _$password.pointer, _$keyStore.pointer, @@ -1676,28 +1677,28 @@ class PDDocument extends _$jni.JObject { r'([BLjava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lorg/apache/pdfbox/io/MemoryUsageSetting;)Lorg/apache/pdfbox/pdmodel/PDDocument;', ); - static final _load$15 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _load$15 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public org.apache.pdfbox.pdmodel.PDDocument load(byte[] input, java.lang.String password, java.io.InputStream keyStore, java.lang.String alias, org.apache.pdfbox.io.MemoryUsageSetting memUsageSetting)` /// The returned object must be released after use, by calling the [release] method. @@ -1712,21 +1713,21 @@ class PDDocument extends _$jni.JObject { ///@throws InvalidPasswordException If the password is incorrect. ///@throws IOException In case of a reading or parsing error. static PDDocument? load$15( - _$jni.JArray<_$jni.jbyte>? input, - _$jni.JString? password, - _$jni.JObject? keyStore, - _$jni.JString? alias, - _$jni.JObject? memUsageSetting, + jni$_.JArray? input, + jni$_.JString? password, + jni$_.JObject? keyStore, + jni$_.JString? alias, + jni$_.JObject? memUsageSetting, ) { - final _$input = input?.reference ?? _$jni.jNullReference; - final _$password = password?.reference ?? _$jni.jNullReference; - final _$keyStore = keyStore?.reference ?? _$jni.jNullReference; - final _$alias = alias?.reference ?? _$jni.jNullReference; + final _$input = input?.reference ?? jni$_.jNullReference; + final _$password = password?.reference ?? jni$_.jNullReference; + final _$keyStore = keyStore?.reference ?? jni$_.jNullReference; + final _$alias = alias?.reference ?? jni$_.jNullReference; final _$memUsageSetting = - memUsageSetting?.reference ?? _$jni.jNullReference; + memUsageSetting?.reference ?? jni$_.jNullReference; return _load$15( _class.reference.pointer, - _id_load$15 as _$jni.JMethodIDPtr, + _id_load$15 as jni$_.JMethodIDPtr, _$input.pointer, _$password.pointer, _$keyStore.pointer, @@ -1740,16 +1741,16 @@ class PDDocument extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _save = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _save = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void save(java.lang.String fileName)` /// @@ -1761,10 +1762,10 @@ class PDDocument extends _$jni.JObject { ///@param fileName The file to save as. ///@throws IOException if the output could not be written void save( - _$jni.JString? fileName, + jni$_.JString? fileName, ) { - final _$fileName = fileName?.reference ?? _$jni.jNullReference; - _save(reference.pointer, _id_save as _$jni.JMethodIDPtr, _$fileName.pointer) + final _$fileName = fileName?.reference ?? jni$_.jNullReference; + _save(reference.pointer, _id_save as jni$_.JMethodIDPtr, _$fileName.pointer) .check(); } @@ -1773,16 +1774,16 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/File;)V', ); - static final _save$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _save$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void save(java.io.File file)` /// @@ -1794,10 +1795,10 @@ class PDDocument extends _$jni.JObject { ///@param file The file to save as. ///@throws IOException if the output could not be written void save$1( - _$jni.JObject? file, + jni$_.JObject? file, ) { - final _$file = file?.reference ?? _$jni.jNullReference; - _save$1(reference.pointer, _id_save$1 as _$jni.JMethodIDPtr, _$file.pointer) + final _$file = file?.reference ?? jni$_.jNullReference; + _save$1(reference.pointer, _id_save$1 as jni$_.JMethodIDPtr, _$file.pointer) .check(); } @@ -1806,16 +1807,16 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/OutputStream;)V', ); - static final _save$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _save$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void save(java.io.OutputStream output)` /// @@ -1828,10 +1829,10 @@ class PDDocument extends _$jni.JObject { /// it in a java.io.BufferedOutputStream, unless it is already buffered. ///@throws IOException if the output could not be written void save$2( - _$jni.JObject? output, + jni$_.JObject? output, ) { - final _$output = output?.reference ?? _$jni.jNullReference; - _save$2(reference.pointer, _id_save$2 as _$jni.JMethodIDPtr, + final _$output = output?.reference ?? jni$_.jNullReference; + _save$2(reference.pointer, _id_save$2 as jni$_.JMethodIDPtr, _$output.pointer) .check(); } @@ -1841,16 +1842,16 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/OutputStream;)V', ); - static final _saveIncremental = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _saveIncremental = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void saveIncremental(java.io.OutputStream output)` /// @@ -1868,11 +1869,11 @@ class PDDocument extends _$jni.JObject { ///@throws IOException if the output could not be written ///@throws IllegalStateException if the document was not loaded from a file or a stream. void saveIncremental( - _$jni.JObject? output, + jni$_.JObject? output, ) { - final _$output = output?.reference ?? _$jni.jNullReference; + final _$output = output?.reference ?? jni$_.jNullReference; _saveIncremental(reference.pointer, - _id_saveIncremental as _$jni.JMethodIDPtr, _$output.pointer) + _id_saveIncremental as jni$_.JMethodIDPtr, _$output.pointer) .check(); } @@ -1881,22 +1882,22 @@ class PDDocument extends _$jni.JObject { r'(Ljava/io/OutputStream;Ljava/util/Set;)V', ); - static final _saveIncremental$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _saveIncremental$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void saveIncremental(java.io.OutputStream output, java.util.Set objectsToWrite)` /// @@ -1919,14 +1920,14 @@ class PDDocument extends _$jni.JObject { ///@throws IOException if the output could not be written ///@throws IllegalStateException if the document was not loaded from a file or a stream. void saveIncremental$1( - _$jni.JObject? output, - _$jni.JSet<_$jni.JObject?>? objectsToWrite, + jni$_.JObject? output, + jni$_.JSet? objectsToWrite, ) { - final _$output = output?.reference ?? _$jni.jNullReference; - final _$objectsToWrite = objectsToWrite?.reference ?? _$jni.jNullReference; + final _$output = output?.reference ?? jni$_.jNullReference; + final _$objectsToWrite = objectsToWrite?.reference ?? jni$_.jNullReference; _saveIncremental$1( reference.pointer, - _id_saveIncremental$1 as _$jni.JMethodIDPtr, + _id_saveIncremental$1 as jni$_.JMethodIDPtr, _$output.pointer, _$objectsToWrite.pointer) .check(); @@ -1938,16 +1939,16 @@ class PDDocument extends _$jni.JObject { ); static final _saveIncrementalForExternalSigning = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public org.apache.pdfbox.pdmodel.interactive.digitalsignature.ExternalSigningSupport saveIncrementalForExternalSigning(java.io.OutputStream output)` /// The returned object must be released after use, by calling the [release] method. @@ -1989,15 +1990,15 @@ class PDDocument extends _$jni.JObject { ///@throws IOException if the output could not be written ///@throws IllegalStateException if the document was not loaded from a file or a stream or /// signature options were not set. - _$jni.JObject? saveIncrementalForExternalSigning( - _$jni.JObject? output, + jni$_.JObject? saveIncrementalForExternalSigning( + jni$_.JObject? output, ) { - final _$output = output?.reference ?? _$jni.jNullReference; + final _$output = output?.reference ?? jni$_.jNullReference; return _saveIncrementalForExternalSigning( reference.pointer, - _id_saveIncrementalForExternalSigning as _$jni.JMethodIDPtr, + _id_saveIncrementalForExternalSigning as jni$_.JMethodIDPtr, _$output.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_getPage = _class.instanceMethodId( @@ -2005,15 +2006,15 @@ class PDDocument extends _$jni.JObject { r'(I)Lorg/apache/pdfbox/pdmodel/PDPage;', ); - static final _getPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _getPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public org.apache.pdfbox.pdmodel.PDPage getPage(int pageIndex)` /// The returned object must be released after use, by calling the [release] method. @@ -2025,12 +2026,12 @@ class PDDocument extends _$jni.JObject { /// PDDocument\#getPages() instead. ///@param pageIndex the 0-based page index ///@return the page at the given index. - _$jni.JObject? getPage( + jni$_.JObject? getPage( int pageIndex, ) { return _getPage( - reference.pointer, _id_getPage as _$jni.JMethodIDPtr, pageIndex) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getPage as jni$_.JMethodIDPtr, pageIndex) + .object(const jni$_.JObjectNullableType()); } static final _id_getPages = _class.instanceMethodId( @@ -2038,16 +2039,16 @@ class PDDocument extends _$jni.JObject { r'()Lorg/apache/pdfbox/pdmodel/PDPageTree;', ); - static final _getPages = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getPages = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.PDPageTree getPages()` @@ -2055,9 +2056,9 @@ class PDDocument extends _$jni.JObject { /// /// Returns the page tree. ///@return the page tree - _$jni.JObject? getPages() { - return _getPages(reference.pointer, _id_getPages as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? getPages() { + return _getPages(reference.pointer, _id_getPages as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getNumberOfPages = _class.instanceMethodId( @@ -2065,16 +2066,16 @@ class PDDocument extends _$jni.JObject { r'()I', ); - static final _getNumberOfPages = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNumberOfPages = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getNumberOfPages()` @@ -2083,7 +2084,7 @@ class PDDocument extends _$jni.JObject { ///@return The total number of pages in the PDF document. int getNumberOfPages() { return _getNumberOfPages( - reference.pointer, _id_getNumberOfPages as _$jni.JMethodIDPtr) + reference.pointer, _id_getNumberOfPages as jni$_.JMethodIDPtr) .integer; } @@ -2092,16 +2093,16 @@ class PDDocument extends _$jni.JObject { r'()V', ); - static final _close = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _close = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void close()` @@ -2109,7 +2110,7 @@ class PDDocument extends _$jni.JObject { /// This will close the underlying COSDocument object. ///@throws IOException If there is an error releasing resources. void close() { - _close(reference.pointer, _id_close as _$jni.JMethodIDPtr).check(); + _close(reference.pointer, _id_close as jni$_.JMethodIDPtr).check(); } static final _id_protect = _class.instanceMethodId( @@ -2117,16 +2118,16 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/encryption/ProtectionPolicy;)V', ); - static final _protect = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _protect = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void protect(org.apache.pdfbox.pdmodel.encryption.ProtectionPolicy policy)` /// @@ -2141,10 +2142,10 @@ class PDDocument extends _$jni.JObject { ///@param policy The protection policy. ///@throws IOException if there isn't any suitable security handler. void protect( - _$jni.JObject? policy, + jni$_.JObject? policy, ) { - final _$policy = policy?.reference ?? _$jni.jNullReference; - _protect(reference.pointer, _id_protect as _$jni.JMethodIDPtr, + final _$policy = policy?.reference ?? jni$_.jNullReference; + _protect(reference.pointer, _id_protect as jni$_.JMethodIDPtr, _$policy.pointer) .check(); } @@ -2155,16 +2156,16 @@ class PDDocument extends _$jni.JObject { ); static final _getCurrentAccessPermission = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.encryption.AccessPermission getCurrentAccessPermission()` @@ -2175,10 +2176,10 @@ class PDDocument extends _$jni.JObject { /// only mode so that permissions cannot be changed. Methods providing access to content should rely on this object /// to verify if the current user is allowed to proceed. ///@return the access permissions for the current user on the document. - _$jni.JObject? getCurrentAccessPermission() { + jni$_.JObject? getCurrentAccessPermission() { return _getCurrentAccessPermission(reference.pointer, - _id_getCurrentAccessPermission as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_getCurrentAccessPermission as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_isAllSecurityToBeRemoved = _class.instanceMethodId( @@ -2186,16 +2187,16 @@ class PDDocument extends _$jni.JObject { r'()Z', ); - static final _isAllSecurityToBeRemoved = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isAllSecurityToBeRemoved = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isAllSecurityToBeRemoved()` @@ -2204,7 +2205,7 @@ class PDDocument extends _$jni.JObject { ///@return returns true if all security shall be removed otherwise false bool isAllSecurityToBeRemoved() { return _isAllSecurityToBeRemoved(reference.pointer, - _id_isAllSecurityToBeRemoved as _$jni.JMethodIDPtr) + _id_isAllSecurityToBeRemoved as jni$_.JMethodIDPtr) .boolean; } @@ -2213,15 +2214,15 @@ class PDDocument extends _$jni.JObject { r'(Z)V', ); - static final _setAllSecurityToBeRemoved = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setAllSecurityToBeRemoved = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setAllSecurityToBeRemoved(boolean removeAllSecurity)` /// @@ -2232,7 +2233,7 @@ class PDDocument extends _$jni.JObject { ) { _setAllSecurityToBeRemoved( reference.pointer, - _id_setAllSecurityToBeRemoved as _$jni.JMethodIDPtr, + _id_setAllSecurityToBeRemoved as jni$_.JMethodIDPtr, removeAllSecurity ? 1 : 0) .check(); } @@ -2242,16 +2243,16 @@ class PDDocument extends _$jni.JObject { r'()Ljava/lang/Long;', ); - static final _getDocumentId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getDocumentId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Long getDocumentId()` @@ -2259,10 +2260,10 @@ class PDDocument extends _$jni.JObject { /// /// Provides the document ID. ///@return the document ID - _$jni.JLong? getDocumentId() { + jni$_.JLong? getDocumentId() { return _getDocumentId( - reference.pointer, _id_getDocumentId as _$jni.JMethodIDPtr) - .object<_$jni.JLong?>(const _$jni.JLongNullableType()); + reference.pointer, _id_getDocumentId as jni$_.JMethodIDPtr) + .object(const jni$_.JLongNullableType()); } static final _id_setDocumentId = _class.instanceMethodId( @@ -2270,26 +2271,26 @@ class PDDocument extends _$jni.JObject { r'(Ljava/lang/Long;)V', ); - static final _setDocumentId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setDocumentId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setDocumentId(java.lang.Long docId)` /// /// Sets the document ID to the given value. ///@param docId the new document ID void setDocumentId( - _$jni.JLong? docId, + jni$_.JLong? docId, ) { - final _$docId = docId?.reference ?? _$jni.jNullReference; - _setDocumentId(reference.pointer, _id_setDocumentId as _$jni.JMethodIDPtr, + final _$docId = docId?.reference ?? jni$_.jNullReference; + _setDocumentId(reference.pointer, _id_setDocumentId as jni$_.JMethodIDPtr, _$docId.pointer) .check(); } @@ -2299,16 +2300,16 @@ class PDDocument extends _$jni.JObject { r'()F', ); - static final _getVersion = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getVersion = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getVersion()` @@ -2316,7 +2317,7 @@ class PDDocument extends _$jni.JObject { /// Returns the PDF specification version this document conforms to. ///@return the PDF version (e.g. 1.4f) double getVersion() { - return _getVersion(reference.pointer, _id_getVersion as _$jni.JMethodIDPtr) + return _getVersion(reference.pointer, _id_getVersion as jni$_.JMethodIDPtr) .float; } @@ -2325,15 +2326,15 @@ class PDDocument extends _$jni.JObject { r'(F)V', ); - static final _setVersion = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Double,)>)>>('globalEnv_CallVoidMethod') + static final _setVersion = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Double,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, double)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, double)>(); /// from: `public void setVersion(float newVersion)` /// @@ -2343,7 +2344,7 @@ class PDDocument extends _$jni.JObject { double newVersion, ) { _setVersion( - reference.pointer, _id_setVersion as _$jni.JMethodIDPtr, newVersion) + reference.pointer, _id_setVersion as jni$_.JMethodIDPtr, newVersion) .check(); } @@ -2352,16 +2353,16 @@ class PDDocument extends _$jni.JObject { r'()Lorg/apache/pdfbox/pdmodel/ResourceCache;', ); - static final _getResourceCache = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getResourceCache = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.ResourceCache getResourceCache()` @@ -2369,10 +2370,10 @@ class PDDocument extends _$jni.JObject { /// /// Returns the resource cache associated with this document, or null if there is none. ///@return the resource cache or null. - _$jni.JObject? getResourceCache() { + jni$_.JObject? getResourceCache() { return _getResourceCache( - reference.pointer, _id_getResourceCache as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getResourceCache as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setResourceCache = _class.instanceMethodId( @@ -2380,99 +2381,99 @@ class PDDocument extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/ResourceCache;)V', ); - static final _setResourceCache = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setResourceCache = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setResourceCache(org.apache.pdfbox.pdmodel.ResourceCache resourceCache)` /// /// Sets the resource cache associated with this document. ///@param resourceCache A resource cache, or null. void setResourceCache( - _$jni.JObject? resourceCache, + jni$_.JObject? resourceCache, ) { - final _$resourceCache = resourceCache?.reference ?? _$jni.jNullReference; + final _$resourceCache = resourceCache?.reference ?? jni$_.jNullReference; _setResourceCache(reference.pointer, - _id_setResourceCache as _$jni.JMethodIDPtr, _$resourceCache.pointer) + _id_setResourceCache as jni$_.JMethodIDPtr, _$resourceCache.pointer) .check(); } } -final class $PDDocument$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $PDDocument$NullableType extends jni$_.JObjType { + @jni$_.internal const $PDDocument$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lorg/apache/pdfbox/pdmodel/PDDocument;'; - @_$jni.internal - @_$core.override - PDDocument? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + PDDocument? fromReference(jni$_.JReference reference) => reference.isNull ? null : PDDocument.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($PDDocument$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($PDDocument$NullableType) && other is $PDDocument$NullableType; } } -final class $PDDocument$Type extends _$jni.JObjType { - @_$jni.internal +final class $PDDocument$Type extends jni$_.JObjType { + @jni$_.internal const $PDDocument$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lorg/apache/pdfbox/pdmodel/PDDocument;'; - @_$jni.internal - @_$core.override - PDDocument fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + PDDocument fromReference(jni$_.JReference reference) => PDDocument.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $PDDocument$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($PDDocument$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($PDDocument$Type) && other is $PDDocument$Type; } diff --git a/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocumentInformation.dart b/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocumentInformation.dart index cb1573df3..568c1f850 100644 --- a/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocumentInformation.dart +++ b/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/pdmodel/PDDocumentInformation.dart @@ -48,10 +48,10 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; /// from: `org.apache.pdfbox.pdmodel.PDDocumentInformation` /// @@ -60,19 +60,19 @@ import 'package:jni/jni.dart' as _$jni; /// method then it will clear the value. ///@author Ben Litchfield ///@author Gerardo Ortiz -class PDDocumentInformation extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class PDDocumentInformation extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal PDDocumentInformation.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'org/apache/pdfbox/pdmodel/PDDocumentInformation'); + jni$_.JClass.forName(r'org/apache/pdfbox/pdmodel/PDDocumentInformation'); /// The type which includes information such as the signature of this class. static const nullableType = $PDDocumentInformation$NullableType(); @@ -81,16 +81,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` @@ -99,7 +99,7 @@ class PDDocumentInformation extends _$jni.JObject { /// Default Constructor. factory PDDocumentInformation() { return PDDocumentInformation.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -107,16 +107,16 @@ class PDDocumentInformation extends _$jni.JObject { r'(Lorg/apache/pdfbox/cos/COSDictionary;)V', ); - static final _new$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (org.apache.pdfbox.cos.COSDictionary dic)` /// The returned object must be released after use, by calling the [release] method. @@ -124,11 +124,11 @@ class PDDocumentInformation extends _$jni.JObject { /// Constructor that is used for a preexisting dictionary. ///@param dic The underlying dictionary. factory PDDocumentInformation.new$1( - _$jni.JObject? dic, + jni$_.JObject? dic, ) { - final _$dic = dic?.reference ?? _$jni.jNullReference; + final _$dic = dic?.reference ?? jni$_.jNullReference; return PDDocumentInformation.fromReference(_new$1(_class.reference.pointer, - _id_new$1 as _$jni.JMethodIDPtr, _$dic.pointer) + _id_new$1 as jni$_.JMethodIDPtr, _$dic.pointer) .reference); } @@ -137,16 +137,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Lorg/apache/pdfbox/cos/COSDictionary;', ); - static final _getCOSObject = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCOSObject = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.cos.COSDictionary getCOSObject()` @@ -154,10 +154,10 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the underlying dictionary that this object wraps. ///@return The underlying info dictionary. - _$jni.JObject? getCOSObject() { + jni$_.JObject? getCOSObject() { return _getCOSObject( - reference.pointer, _id_getCOSObject as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getCOSObject as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getPropertyStringValue = _class.instanceMethodId( @@ -165,16 +165,16 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)Ljava/lang/Object;', ); - static final _getPropertyStringValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getPropertyStringValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.lang.Object getPropertyStringValue(java.lang.String propertyKey)` /// The returned object must be released after use, by calling the [release] method. @@ -187,15 +187,15 @@ class PDDocumentInformation extends _$jni.JObject { /// ///@param propertyKey the dictionaries key ///@return the properties value - _$jni.JObject? getPropertyStringValue( - _$jni.JString? propertyKey, + jni$_.JObject? getPropertyStringValue( + jni$_.JString? propertyKey, ) { - final _$propertyKey = propertyKey?.reference ?? _$jni.jNullReference; + final _$propertyKey = propertyKey?.reference ?? jni$_.jNullReference; return _getPropertyStringValue( reference.pointer, - _id_getPropertyStringValue as _$jni.JMethodIDPtr, + _id_getPropertyStringValue as jni$_.JMethodIDPtr, _$propertyKey.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_getTitle = _class.instanceMethodId( @@ -203,16 +203,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getTitle = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getTitle = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getTitle()` @@ -220,9 +220,9 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the title of the document. This will return null if no title exists. ///@return The title of the document. - _$jni.JString? getTitle() { - return _getTitle(reference.pointer, _id_getTitle as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getTitle() { + return _getTitle(reference.pointer, _id_getTitle as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setTitle = _class.instanceMethodId( @@ -230,26 +230,26 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setTitle = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setTitle = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setTitle(java.lang.String title)` /// /// This will set the title of the document. ///@param title The new title for the document. void setTitle( - _$jni.JString? title, + jni$_.JString? title, ) { - final _$title = title?.reference ?? _$jni.jNullReference; - _setTitle(reference.pointer, _id_setTitle as _$jni.JMethodIDPtr, + final _$title = title?.reference ?? jni$_.jNullReference; + _setTitle(reference.pointer, _id_setTitle as jni$_.JMethodIDPtr, _$title.pointer) .check(); } @@ -259,16 +259,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getAuthor = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getAuthor = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getAuthor()` @@ -276,9 +276,9 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the author of the document. This will return null if no author exists. ///@return The author of the document. - _$jni.JString? getAuthor() { - return _getAuthor(reference.pointer, _id_getAuthor as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getAuthor() { + return _getAuthor(reference.pointer, _id_getAuthor as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setAuthor = _class.instanceMethodId( @@ -286,26 +286,26 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setAuthor = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setAuthor = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setAuthor(java.lang.String author)` /// /// This will set the author of the document. ///@param author The new author for the document. void setAuthor( - _$jni.JString? author, + jni$_.JString? author, ) { - final _$author = author?.reference ?? _$jni.jNullReference; - _setAuthor(reference.pointer, _id_setAuthor as _$jni.JMethodIDPtr, + final _$author = author?.reference ?? jni$_.jNullReference; + _setAuthor(reference.pointer, _id_setAuthor as jni$_.JMethodIDPtr, _$author.pointer) .check(); } @@ -315,16 +315,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getSubject = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSubject = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getSubject()` @@ -332,9 +332,9 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the subject of the document. This will return null if no subject exists. ///@return The subject of the document. - _$jni.JString? getSubject() { - return _getSubject(reference.pointer, _id_getSubject as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getSubject() { + return _getSubject(reference.pointer, _id_getSubject as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setSubject = _class.instanceMethodId( @@ -342,26 +342,26 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setSubject = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setSubject = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setSubject(java.lang.String subject)` /// /// This will set the subject of the document. ///@param subject The new subject for the document. void setSubject( - _$jni.JString? subject, + jni$_.JString? subject, ) { - final _$subject = subject?.reference ?? _$jni.jNullReference; - _setSubject(reference.pointer, _id_setSubject as _$jni.JMethodIDPtr, + final _$subject = subject?.reference ?? jni$_.jNullReference; + _setSubject(reference.pointer, _id_setSubject as jni$_.JMethodIDPtr, _$subject.pointer) .check(); } @@ -371,16 +371,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getKeywords = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getKeywords = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getKeywords()` @@ -388,10 +388,10 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the keywords of the document. This will return null if no keywords exists. ///@return The keywords of the document. - _$jni.JString? getKeywords() { + jni$_.JString? getKeywords() { return _getKeywords( - reference.pointer, _id_getKeywords as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getKeywords as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setKeywords = _class.instanceMethodId( @@ -399,26 +399,26 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setKeywords = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setKeywords = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setKeywords(java.lang.String keywords)` /// /// This will set the keywords of the document. ///@param keywords The new keywords for the document. void setKeywords( - _$jni.JString? keywords, + jni$_.JString? keywords, ) { - final _$keywords = keywords?.reference ?? _$jni.jNullReference; - _setKeywords(reference.pointer, _id_setKeywords as _$jni.JMethodIDPtr, + final _$keywords = keywords?.reference ?? jni$_.jNullReference; + _setKeywords(reference.pointer, _id_setKeywords as jni$_.JMethodIDPtr, _$keywords.pointer) .check(); } @@ -428,16 +428,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getCreator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCreator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getCreator()` @@ -445,9 +445,9 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the creator of the document. This will return null if no creator exists. ///@return The creator of the document. - _$jni.JString? getCreator() { - return _getCreator(reference.pointer, _id_getCreator as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getCreator() { + return _getCreator(reference.pointer, _id_getCreator as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setCreator = _class.instanceMethodId( @@ -455,26 +455,26 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setCreator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setCreator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setCreator(java.lang.String creator)` /// /// This will set the creator of the document. ///@param creator The new creator for the document. void setCreator( - _$jni.JString? creator, + jni$_.JString? creator, ) { - final _$creator = creator?.reference ?? _$jni.jNullReference; - _setCreator(reference.pointer, _id_setCreator as _$jni.JMethodIDPtr, + final _$creator = creator?.reference ?? jni$_.jNullReference; + _setCreator(reference.pointer, _id_setCreator as jni$_.JMethodIDPtr, _$creator.pointer) .check(); } @@ -484,16 +484,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getProducer = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getProducer = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getProducer()` @@ -501,10 +501,10 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the producer of the document. This will return null if no producer exists. ///@return The producer of the document. - _$jni.JString? getProducer() { + jni$_.JString? getProducer() { return _getProducer( - reference.pointer, _id_getProducer as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getProducer as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setProducer = _class.instanceMethodId( @@ -512,26 +512,26 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setProducer = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setProducer = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setProducer(java.lang.String producer)` /// /// This will set the producer of the document. ///@param producer The new producer for the document. void setProducer( - _$jni.JString? producer, + jni$_.JString? producer, ) { - final _$producer = producer?.reference ?? _$jni.jNullReference; - _setProducer(reference.pointer, _id_setProducer as _$jni.JMethodIDPtr, + final _$producer = producer?.reference ?? jni$_.jNullReference; + _setProducer(reference.pointer, _id_setProducer as jni$_.JMethodIDPtr, _$producer.pointer) .check(); } @@ -541,16 +541,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/util/Calendar;', ); - static final _getCreationDate = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCreationDate = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.Calendar getCreationDate()` @@ -558,10 +558,10 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the creation date of the document. This will return null if no creation date exists. ///@return The creation date of the document. - _$jni.JObject? getCreationDate() { + jni$_.JObject? getCreationDate() { return _getCreationDate( - reference.pointer, _id_getCreationDate as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getCreationDate as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setCreationDate = _class.instanceMethodId( @@ -569,27 +569,27 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/util/Calendar;)V', ); - static final _setCreationDate = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setCreationDate = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setCreationDate(java.util.Calendar date)` /// /// This will set the creation date of the document. ///@param date The new creation date for the document. void setCreationDate( - _$jni.JObject? date, + jni$_.JObject? date, ) { - final _$date = date?.reference ?? _$jni.jNullReference; + final _$date = date?.reference ?? jni$_.jNullReference; _setCreationDate(reference.pointer, - _id_setCreationDate as _$jni.JMethodIDPtr, _$date.pointer) + _id_setCreationDate as jni$_.JMethodIDPtr, _$date.pointer) .check(); } @@ -598,16 +598,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/util/Calendar;', ); - static final _getModificationDate = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getModificationDate = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.Calendar getModificationDate()` @@ -615,10 +615,10 @@ class PDDocumentInformation extends _$jni.JObject { /// /// This will get the modification date of the document. This will return null if no modification date exists. ///@return The modification date of the document. - _$jni.JObject? getModificationDate() { + jni$_.JObject? getModificationDate() { return _getModificationDate( - reference.pointer, _id_getModificationDate as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getModificationDate as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setModificationDate = _class.instanceMethodId( @@ -626,27 +626,27 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/util/Calendar;)V', ); - static final _setModificationDate = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setModificationDate = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setModificationDate(java.util.Calendar date)` /// /// This will set the modification date of the document. ///@param date The new modification date for the document. void setModificationDate( - _$jni.JObject? date, + jni$_.JObject? date, ) { - final _$date = date?.reference ?? _$jni.jNullReference; + final _$date = date?.reference ?? jni$_.jNullReference; _setModificationDate(reference.pointer, - _id_setModificationDate as _$jni.JMethodIDPtr, _$date.pointer) + _id_setModificationDate as jni$_.JMethodIDPtr, _$date.pointer) .check(); } @@ -655,16 +655,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getTrapped = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getTrapped = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getTrapped()` @@ -673,9 +673,9 @@ class PDDocumentInformation extends _$jni.JObject { /// This will get the trapped value for the document. /// This will return null if one is not found. ///@return The trapped value for the document. - _$jni.JString? getTrapped() { - return _getTrapped(reference.pointer, _id_getTrapped as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getTrapped() { + return _getTrapped(reference.pointer, _id_getTrapped as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getMetadataKeys = _class.instanceMethodId( @@ -683,16 +683,16 @@ class PDDocumentInformation extends _$jni.JObject { r'()Ljava/util/Set;', ); - static final _getMetadataKeys = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getMetadataKeys = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.Set getMetadataKeys()` @@ -701,12 +701,12 @@ class PDDocumentInformation extends _$jni.JObject { /// This will get the keys of all metadata information fields for the document. ///@return all metadata key strings. ///@since Apache PDFBox 1.3.0 - _$jni.JSet<_$jni.JString?>? getMetadataKeys() { + jni$_.JSet? getMetadataKeys() { return _getMetadataKeys( - reference.pointer, _id_getMetadataKeys as _$jni.JMethodIDPtr) - .object<_$jni.JSet<_$jni.JString?>?>( - const _$jni.JSetNullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + reference.pointer, _id_getMetadataKeys as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JSetNullableType( + jni$_.JStringNullableType())); } static final _id_getCustomMetadataValue = _class.instanceMethodId( @@ -714,16 +714,16 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)Ljava/lang/String;', ); - static final _getCustomMetadataValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getCustomMetadataValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.lang.String getCustomMetadataValue(java.lang.String fieldName)` /// The returned object must be released after use, by calling the [release] method. @@ -732,15 +732,15 @@ class PDDocumentInformation extends _$jni.JObject { /// This will return null if one is not found. ///@param fieldName Name of custom metadata field from pdf document. ///@return String Value of metadata field - _$jni.JString? getCustomMetadataValue( - _$jni.JString? fieldName, + jni$_.JString? getCustomMetadataValue( + jni$_.JString? fieldName, ) { - final _$fieldName = fieldName?.reference ?? _$jni.jNullReference; + final _$fieldName = fieldName?.reference ?? jni$_.jNullReference; return _getCustomMetadataValue( reference.pointer, - _id_getCustomMetadataValue as _$jni.JMethodIDPtr, + _id_getCustomMetadataValue as jni$_.JMethodIDPtr, _$fieldName.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + .object(const jni$_.JStringNullableType()); } static final _id_setCustomMetadataValue = _class.instanceMethodId( @@ -748,22 +748,22 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;Ljava/lang/String;)V', ); - static final _setCustomMetadataValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _setCustomMetadataValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void setCustomMetadataValue(java.lang.String fieldName, java.lang.String fieldValue)` /// @@ -771,14 +771,14 @@ class PDDocumentInformation extends _$jni.JObject { ///@param fieldName The name of the custom metadata field. ///@param fieldValue The value to the custom metadata field. void setCustomMetadataValue( - _$jni.JString? fieldName, - _$jni.JString? fieldValue, + jni$_.JString? fieldName, + jni$_.JString? fieldValue, ) { - final _$fieldName = fieldName?.reference ?? _$jni.jNullReference; - final _$fieldValue = fieldValue?.reference ?? _$jni.jNullReference; + final _$fieldName = fieldName?.reference ?? jni$_.jNullReference; + final _$fieldValue = fieldValue?.reference ?? jni$_.jNullReference; _setCustomMetadataValue( reference.pointer, - _id_setCustomMetadataValue as _$jni.JMethodIDPtr, + _id_setCustomMetadataValue as jni$_.JMethodIDPtr, _$fieldName.pointer, _$fieldValue.pointer) .check(); @@ -789,16 +789,16 @@ class PDDocumentInformation extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setTrapped = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setTrapped = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setTrapped(java.lang.String value)` /// @@ -807,48 +807,48 @@ class PDDocumentInformation extends _$jni.JObject { ///@param value The new trapped value for the document. ///@throws IllegalArgumentException if the parameter is invalid. void setTrapped( - _$jni.JString? value, + jni$_.JString? value, ) { - final _$value = value?.reference ?? _$jni.jNullReference; - _setTrapped(reference.pointer, _id_setTrapped as _$jni.JMethodIDPtr, + final _$value = value?.reference ?? jni$_.jNullReference; + _setTrapped(reference.pointer, _id_setTrapped as jni$_.JMethodIDPtr, _$value.pointer) .check(); } } final class $PDDocumentInformation$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $PDDocumentInformation$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lorg/apache/pdfbox/pdmodel/PDDocumentInformation;'; - @_$jni.internal - @_$core.override - PDDocumentInformation? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + PDDocumentInformation? fromReference(jni$_.JReference reference) => reference.isNull ? null : PDDocumentInformation.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($PDDocumentInformation$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($PDDocumentInformation$NullableType) && other is $PDDocumentInformation$NullableType; @@ -856,37 +856,37 @@ final class $PDDocumentInformation$NullableType } final class $PDDocumentInformation$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $PDDocumentInformation$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lorg/apache/pdfbox/pdmodel/PDDocumentInformation;'; - @_$jni.internal - @_$core.override - PDDocumentInformation fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + PDDocumentInformation fromReference(jni$_.JReference reference) => PDDocumentInformation.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $PDDocumentInformation$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($PDDocumentInformation$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($PDDocumentInformation$Type) && other is $PDDocumentInformation$Type; diff --git a/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/text/PDFTextStripper.dart b/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/text/PDFTextStripper.dart index 74bf44b24..929c1b63c 100644 --- a/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/text/PDFTextStripper.dart +++ b/pkgs/jnigen/example/pdfbox_plugin/lib/src/third_party/org/apache/pdfbox/text/PDFTextStripper.dart @@ -48,12 +48,12 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; -import '../pdmodel/PDDocument.dart' as pddocument_; +import '../pdmodel/PDDocument.dart' as pddocument$_; /// from: `org.apache.pdfbox.text.PDFTextStripper` /// @@ -64,19 +64,19 @@ import '../pdmodel/PDDocument.dart' as pddocument_; /// The basic flow of this process is that we get a document and use a series of processXXX() functions that work on /// smaller and smaller chunks of the page. Eventually, we fully process each page and then print it. ///@author Ben Litchfield -class PDFTextStripper extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class PDFTextStripper extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal PDFTextStripper.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'org/apache/pdfbox/text/PDFTextStripper'); + jni$_.JClass.forName(r'org/apache/pdfbox/text/PDFTextStripper'); /// The type which includes information such as the signature of this class. static const nullableType = $PDFTextStripper$NullableType(); @@ -85,16 +85,16 @@ class PDFTextStripper extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` @@ -104,7 +104,7 @@ class PDFTextStripper extends _$jni.JObject { ///@throws IOException If there is an error loading the properties. factory PDFTextStripper() { return PDFTextStripper.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -113,16 +113,16 @@ class PDFTextStripper extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/PDDocument;)Ljava/lang/String;', ); - static final _getText = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getText = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.lang.String getText(org.apache.pdfbox.pdmodel.PDDocument doc)` /// The returned object must be released after use, by calling the [release] method. @@ -137,13 +137,13 @@ class PDFTextStripper extends _$jni.JObject { ///@param doc The document to get the text from. ///@return The text of the PDF document. ///@throws IOException if the doc state is invalid or it is encrypted. - _$jni.JString? getText( - pddocument_.PDDocument? doc, + jni$_.JString? getText( + pddocument$_.PDDocument? doc, ) { - final _$doc = doc?.reference ?? _$jni.jNullReference; + final _$doc = doc?.reference ?? jni$_.jNullReference; return _getText( - reference.pointer, _id_getText as _$jni.JMethodIDPtr, _$doc.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getText as jni$_.JMethodIDPtr, _$doc.pointer) + .object(const jni$_.JStringNullableType()); } static final _id_writeText = _class.instanceMethodId( @@ -151,22 +151,22 @@ class PDFTextStripper extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/PDDocument;Ljava/io/Writer;)V', ); - static final _writeText = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _writeText = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void writeText(org.apache.pdfbox.pdmodel.PDDocument doc, java.io.Writer outputStream)` /// @@ -175,12 +175,12 @@ class PDFTextStripper extends _$jni.JObject { ///@param outputStream The location to put the text. ///@throws IOException If the doc is in an invalid state. void writeText( - pddocument_.PDDocument? doc, - _$jni.JObject? outputStream, + pddocument$_.PDDocument? doc, + jni$_.JObject? outputStream, ) { - final _$doc = doc?.reference ?? _$jni.jNullReference; - final _$outputStream = outputStream?.reference ?? _$jni.jNullReference; - _writeText(reference.pointer, _id_writeText as _$jni.JMethodIDPtr, + final _$doc = doc?.reference ?? jni$_.jNullReference; + final _$outputStream = outputStream?.reference ?? jni$_.jNullReference; + _writeText(reference.pointer, _id_writeText as jni$_.JMethodIDPtr, _$doc.pointer, _$outputStream.pointer) .check(); } @@ -190,16 +190,16 @@ class PDFTextStripper extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/PDPage;)V', ); - static final _processPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _processPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void processPage(org.apache.pdfbox.pdmodel.PDPage page)` /// @@ -207,10 +207,10 @@ class PDFTextStripper extends _$jni.JObject { ///@param page The page to process. ///@throws IOException If there is an error processing the page. void processPage( - _$jni.JObject? page, + jni$_.JObject? page, ) { - final _$page = page?.reference ?? _$jni.jNullReference; - _processPage(reference.pointer, _id_processPage as _$jni.JMethodIDPtr, + final _$page = page?.reference ?? jni$_.jNullReference; + _processPage(reference.pointer, _id_processPage as jni$_.JMethodIDPtr, _$page.pointer) .check(); } @@ -220,16 +220,16 @@ class PDFTextStripper extends _$jni.JObject { r'()I', ); - static final _getStartPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getStartPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getStartPage()` @@ -240,7 +240,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return Value of property startPage. int getStartPage() { return _getStartPage( - reference.pointer, _id_getStartPage as _$jni.JMethodIDPtr) + reference.pointer, _id_getStartPage as jni$_.JMethodIDPtr) .integer; } @@ -249,15 +249,15 @@ class PDFTextStripper extends _$jni.JObject { r'(I)V', ); - static final _setStartPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setStartPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setStartPage(int startPageValue)` /// @@ -266,7 +266,7 @@ class PDFTextStripper extends _$jni.JObject { void setStartPage( int startPageValue, ) { - _setStartPage(reference.pointer, _id_setStartPage as _$jni.JMethodIDPtr, + _setStartPage(reference.pointer, _id_setStartPage as jni$_.JMethodIDPtr, startPageValue) .check(); } @@ -276,16 +276,16 @@ class PDFTextStripper extends _$jni.JObject { r'()I', ); - static final _getEndPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getEndPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getEndPage()` @@ -295,7 +295,7 @@ class PDFTextStripper extends _$jni.JObject { /// Integer.MAX_VALUE such that all pages of the pdf will be extracted. ///@return Value of property endPage. int getEndPage() { - return _getEndPage(reference.pointer, _id_getEndPage as _$jni.JMethodIDPtr) + return _getEndPage(reference.pointer, _id_getEndPage as jni$_.JMethodIDPtr) .integer; } @@ -304,15 +304,15 @@ class PDFTextStripper extends _$jni.JObject { r'(I)V', ); - static final _setEndPage = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setEndPage = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setEndPage(int endPageValue)` /// @@ -321,7 +321,7 @@ class PDFTextStripper extends _$jni.JObject { void setEndPage( int endPageValue, ) { - _setEndPage(reference.pointer, _id_setEndPage as _$jni.JMethodIDPtr, + _setEndPage(reference.pointer, _id_setEndPage as jni$_.JMethodIDPtr, endPageValue) .check(); } @@ -331,16 +331,16 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setLineSeparator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setLineSeparator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setLineSeparator(java.lang.String separator)` /// @@ -348,11 +348,11 @@ class PDFTextStripper extends _$jni.JObject { /// preference is not set explicitly using this method. ///@param separator The desired line separator string. void setLineSeparator( - _$jni.JString? separator, + jni$_.JString? separator, ) { - final _$separator = separator?.reference ?? _$jni.jNullReference; + final _$separator = separator?.reference ?? jni$_.jNullReference; _setLineSeparator(reference.pointer, - _id_setLineSeparator as _$jni.JMethodIDPtr, _$separator.pointer) + _id_setLineSeparator as jni$_.JMethodIDPtr, _$separator.pointer) .check(); } @@ -361,16 +361,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getLineSeparator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getLineSeparator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getLineSeparator()` @@ -378,10 +378,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// This will get the line separator. ///@return The desired line separator string. - _$jni.JString? getLineSeparator() { + jni$_.JString? getLineSeparator() { return _getLineSeparator( - reference.pointer, _id_getLineSeparator as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getLineSeparator as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getWordSeparator = _class.instanceMethodId( @@ -389,16 +389,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getWordSeparator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getWordSeparator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getWordSeparator()` @@ -406,10 +406,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// This will get the word separator. ///@return The desired word separator string. - _$jni.JString? getWordSeparator() { + jni$_.JString? getWordSeparator() { return _getWordSeparator( - reference.pointer, _id_getWordSeparator as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getWordSeparator as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setWordSeparator = _class.instanceMethodId( @@ -417,16 +417,16 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setWordSeparator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setWordSeparator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setWordSeparator(java.lang.String separator)` /// @@ -436,11 +436,11 @@ class PDFTextStripper extends _$jni.JObject { /// the empty string. ///@param separator The desired page separator string. void setWordSeparator( - _$jni.JString? separator, + jni$_.JString? separator, ) { - final _$separator = separator?.reference ?? _$jni.jNullReference; + final _$separator = separator?.reference ?? jni$_.jNullReference; _setWordSeparator(reference.pointer, - _id_setWordSeparator as _$jni.JMethodIDPtr, _$separator.pointer) + _id_setWordSeparator as jni$_.JMethodIDPtr, _$separator.pointer) .check(); } @@ -451,16 +451,16 @@ class PDFTextStripper extends _$jni.JObject { ); static final _getSuppressDuplicateOverlappingText = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getSuppressDuplicateOverlappingText()` @@ -468,7 +468,7 @@ class PDFTextStripper extends _$jni.JObject { /// @return Returns the suppressDuplicateOverlappingText. bool getSuppressDuplicateOverlappingText() { return _getSuppressDuplicateOverlappingText(reference.pointer, - _id_getSuppressDuplicateOverlappingText as _$jni.JMethodIDPtr) + _id_getSuppressDuplicateOverlappingText as jni$_.JMethodIDPtr) .boolean; } @@ -479,14 +479,14 @@ class PDFTextStripper extends _$jni.JObject { ); static final _setSuppressDuplicateOverlappingText = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setSuppressDuplicateOverlappingText(boolean suppressDuplicateOverlappingTextValue)` /// @@ -499,7 +499,7 @@ class PDFTextStripper extends _$jni.JObject { ) { _setSuppressDuplicateOverlappingText( reference.pointer, - _id_setSuppressDuplicateOverlappingText as _$jni.JMethodIDPtr, + _id_setSuppressDuplicateOverlappingText as jni$_.JMethodIDPtr, suppressDuplicateOverlappingTextValue ? 1 : 0) .check(); } @@ -509,16 +509,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Z', ); - static final _getSeparateByBeads = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSeparateByBeads = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getSeparateByBeads()` @@ -527,7 +527,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return If the text will be grouped by beads. bool getSeparateByBeads() { return _getSeparateByBeads( - reference.pointer, _id_getSeparateByBeads as _$jni.JMethodIDPtr) + reference.pointer, _id_getSeparateByBeads as jni$_.JMethodIDPtr) .boolean; } @@ -536,15 +536,15 @@ class PDFTextStripper extends _$jni.JObject { r'(Z)V', ); - static final _setShouldSeparateByBeads = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setShouldSeparateByBeads = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setShouldSeparateByBeads(boolean aShouldSeparateByBeads)` /// @@ -555,7 +555,7 @@ class PDFTextStripper extends _$jni.JObject { ) { _setShouldSeparateByBeads( reference.pointer, - _id_setShouldSeparateByBeads as _$jni.JMethodIDPtr, + _id_setShouldSeparateByBeads as jni$_.JMethodIDPtr, aShouldSeparateByBeads ? 1 : 0) .check(); } @@ -565,16 +565,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Lorg/apache/pdfbox/pdmodel/interactive/documentnavigation/outline/PDOutlineItem;', ); - static final _getEndBookmark = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getEndBookmark = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineItem getEndBookmark()` @@ -582,10 +582,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// Get the bookmark where text extraction should end, inclusive. Default is null. ///@return The ending bookmark. - _$jni.JObject? getEndBookmark() { + jni$_.JObject? getEndBookmark() { return _getEndBookmark( - reference.pointer, _id_getEndBookmark as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getEndBookmark as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setEndBookmark = _class.instanceMethodId( @@ -593,26 +593,26 @@ class PDFTextStripper extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/interactive/documentnavigation/outline/PDOutlineItem;)V', ); - static final _setEndBookmark = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setEndBookmark = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setEndBookmark(org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineItem aEndBookmark)` /// /// Set the bookmark where the text extraction should stop. ///@param aEndBookmark The ending bookmark. void setEndBookmark( - _$jni.JObject? aEndBookmark, + jni$_.JObject? aEndBookmark, ) { - final _$aEndBookmark = aEndBookmark?.reference ?? _$jni.jNullReference; - _setEndBookmark(reference.pointer, _id_setEndBookmark as _$jni.JMethodIDPtr, + final _$aEndBookmark = aEndBookmark?.reference ?? jni$_.jNullReference; + _setEndBookmark(reference.pointer, _id_setEndBookmark as jni$_.JMethodIDPtr, _$aEndBookmark.pointer) .check(); } @@ -622,16 +622,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Lorg/apache/pdfbox/pdmodel/interactive/documentnavigation/outline/PDOutlineItem;', ); - static final _getStartBookmark = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getStartBookmark = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineItem getStartBookmark()` @@ -639,10 +639,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// Get the bookmark where text extraction should start, inclusive. Default is null. ///@return The starting bookmark. - _$jni.JObject? getStartBookmark() { + jni$_.JObject? getStartBookmark() { return _getStartBookmark( - reference.pointer, _id_getStartBookmark as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getStartBookmark as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setStartBookmark = _class.instanceMethodId( @@ -650,28 +650,28 @@ class PDFTextStripper extends _$jni.JObject { r'(Lorg/apache/pdfbox/pdmodel/interactive/documentnavigation/outline/PDOutlineItem;)V', ); - static final _setStartBookmark = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setStartBookmark = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setStartBookmark(org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineItem aStartBookmark)` /// /// Set the bookmark where text extraction should start, inclusive. ///@param aStartBookmark The starting bookmark. void setStartBookmark( - _$jni.JObject? aStartBookmark, + jni$_.JObject? aStartBookmark, ) { - final _$aStartBookmark = aStartBookmark?.reference ?? _$jni.jNullReference; + final _$aStartBookmark = aStartBookmark?.reference ?? jni$_.jNullReference; _setStartBookmark( reference.pointer, - _id_setStartBookmark as _$jni.JMethodIDPtr, + _id_setStartBookmark as jni$_.JMethodIDPtr, _$aStartBookmark.pointer) .check(); } @@ -681,16 +681,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Z', ); - static final _getAddMoreFormatting = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getAddMoreFormatting = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getAddMoreFormatting()` @@ -699,7 +699,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return true if some more text formatting will be added bool getAddMoreFormatting() { return _getAddMoreFormatting( - reference.pointer, _id_getAddMoreFormatting as _$jni.JMethodIDPtr) + reference.pointer, _id_getAddMoreFormatting as jni$_.JMethodIDPtr) .boolean; } @@ -708,15 +708,15 @@ class PDFTextStripper extends _$jni.JObject { r'(Z)V', ); - static final _setAddMoreFormatting = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setAddMoreFormatting = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setAddMoreFormatting(boolean newAddMoreFormatting)` /// @@ -727,7 +727,7 @@ class PDFTextStripper extends _$jni.JObject { ) { _setAddMoreFormatting( reference.pointer, - _id_setAddMoreFormatting as _$jni.JMethodIDPtr, + _id_setAddMoreFormatting as jni$_.JMethodIDPtr, newAddMoreFormatting ? 1 : 0) .check(); } @@ -737,16 +737,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Z', ); - static final _getSortByPosition = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSortByPosition = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getSortByPosition()` @@ -755,7 +755,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return true If the text tokens will be sorted before being written. bool getSortByPosition() { return _getSortByPosition( - reference.pointer, _id_getSortByPosition as _$jni.JMethodIDPtr) + reference.pointer, _id_getSortByPosition as jni$_.JMethodIDPtr) .boolean; } @@ -764,15 +764,15 @@ class PDFTextStripper extends _$jni.JObject { r'(Z)V', ); - static final _setSortByPosition = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setSortByPosition = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setSortByPosition(boolean newSortByPosition)` /// @@ -789,7 +789,7 @@ class PDFTextStripper extends _$jni.JObject { ) { _setSortByPosition( reference.pointer, - _id_setSortByPosition as _$jni.JMethodIDPtr, + _id_setSortByPosition as jni$_.JMethodIDPtr, newSortByPosition ? 1 : 0) .check(); } @@ -799,16 +799,16 @@ class PDFTextStripper extends _$jni.JObject { r'()F', ); - static final _getSpacingTolerance = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSpacingTolerance = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getSpacingTolerance()` @@ -818,7 +818,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return The current tolerance / scaling factor double getSpacingTolerance() { return _getSpacingTolerance( - reference.pointer, _id_getSpacingTolerance as _$jni.JMethodIDPtr) + reference.pointer, _id_getSpacingTolerance as jni$_.JMethodIDPtr) .float; } @@ -827,15 +827,15 @@ class PDFTextStripper extends _$jni.JObject { r'(F)V', ); - static final _setSpacingTolerance = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Double,)>)>>('globalEnv_CallVoidMethod') + static final _setSpacingTolerance = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Double,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, double)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, double)>(); /// from: `public void setSpacingTolerance(float spacingToleranceValue)` /// @@ -848,7 +848,7 @@ class PDFTextStripper extends _$jni.JObject { ) { _setSpacingTolerance( reference.pointer, - _id_setSpacingTolerance as _$jni.JMethodIDPtr, + _id_setSpacingTolerance as jni$_.JMethodIDPtr, spacingToleranceValue) .check(); } @@ -858,16 +858,16 @@ class PDFTextStripper extends _$jni.JObject { r'()F', ); - static final _getAverageCharTolerance = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getAverageCharTolerance = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getAverageCharTolerance()` @@ -877,7 +877,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return The current tolerance / scaling factor double getAverageCharTolerance() { return _getAverageCharTolerance(reference.pointer, - _id_getAverageCharTolerance as _$jni.JMethodIDPtr) + _id_getAverageCharTolerance as jni$_.JMethodIDPtr) .float; } @@ -886,15 +886,15 @@ class PDFTextStripper extends _$jni.JObject { r'(F)V', ); - static final _setAverageCharTolerance = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Double,)>)>>('globalEnv_CallVoidMethod') + static final _setAverageCharTolerance = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Double,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, double)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, double)>(); /// from: `public void setAverageCharTolerance(float averageCharToleranceValue)` /// @@ -907,7 +907,7 @@ class PDFTextStripper extends _$jni.JObject { ) { _setAverageCharTolerance( reference.pointer, - _id_setAverageCharTolerance as _$jni.JMethodIDPtr, + _id_setAverageCharTolerance as jni$_.JMethodIDPtr, averageCharToleranceValue) .check(); } @@ -917,16 +917,16 @@ class PDFTextStripper extends _$jni.JObject { r'()F', ); - static final _getIndentThreshold = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getIndentThreshold = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getIndentThreshold()` @@ -936,7 +936,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return the number of whitespace character widths to use when detecting paragraph indents. double getIndentThreshold() { return _getIndentThreshold( - reference.pointer, _id_getIndentThreshold as _$jni.JMethodIDPtr) + reference.pointer, _id_getIndentThreshold as jni$_.JMethodIDPtr) .float; } @@ -945,15 +945,15 @@ class PDFTextStripper extends _$jni.JObject { r'(F)V', ); - static final _setIndentThreshold = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Double,)>)>>('globalEnv_CallVoidMethod') + static final _setIndentThreshold = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Double,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, double)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, double)>(); /// from: `public void setIndentThreshold(float indentThresholdValue)` /// @@ -965,7 +965,7 @@ class PDFTextStripper extends _$jni.JObject { double indentThresholdValue, ) { _setIndentThreshold(reference.pointer, - _id_setIndentThreshold as _$jni.JMethodIDPtr, indentThresholdValue) + _id_setIndentThreshold as jni$_.JMethodIDPtr, indentThresholdValue) .check(); } @@ -974,16 +974,16 @@ class PDFTextStripper extends _$jni.JObject { r'()F', ); - static final _getDropThreshold = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getDropThreshold = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getDropThreshold()` @@ -993,7 +993,7 @@ class PDFTextStripper extends _$jni.JObject { ///@return the character height multiple for max allowed whitespace between lines in the same paragraph. double getDropThreshold() { return _getDropThreshold( - reference.pointer, _id_getDropThreshold as _$jni.JMethodIDPtr) + reference.pointer, _id_getDropThreshold as jni$_.JMethodIDPtr) .float; } @@ -1002,15 +1002,15 @@ class PDFTextStripper extends _$jni.JObject { r'(F)V', ); - static final _setDropThreshold = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Double,)>)>>('globalEnv_CallVoidMethod') + static final _setDropThreshold = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Double,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, double)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, double)>(); /// from: `public void setDropThreshold(float dropThresholdValue)` /// @@ -1022,7 +1022,7 @@ class PDFTextStripper extends _$jni.JObject { double dropThresholdValue, ) { _setDropThreshold(reference.pointer, - _id_setDropThreshold as _$jni.JMethodIDPtr, dropThresholdValue) + _id_setDropThreshold as jni$_.JMethodIDPtr, dropThresholdValue) .check(); } @@ -1031,16 +1031,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getParagraphStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getParagraphStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getParagraphStart()` @@ -1048,10 +1048,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// Returns the string which will be used at the beginning of a paragraph. ///@return the paragraph start string - _$jni.JString? getParagraphStart() { + jni$_.JString? getParagraphStart() { return _getParagraphStart( - reference.pointer, _id_getParagraphStart as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getParagraphStart as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setParagraphStart = _class.instanceMethodId( @@ -1059,27 +1059,27 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setParagraphStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setParagraphStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setParagraphStart(java.lang.String s)` /// /// Sets the string which will be used at the beginning of a paragraph. ///@param s the paragraph start string void setParagraphStart( - _$jni.JString? s, + jni$_.JString? s, ) { - final _$s = s?.reference ?? _$jni.jNullReference; + final _$s = s?.reference ?? jni$_.jNullReference; _setParagraphStart(reference.pointer, - _id_setParagraphStart as _$jni.JMethodIDPtr, _$s.pointer) + _id_setParagraphStart as jni$_.JMethodIDPtr, _$s.pointer) .check(); } @@ -1088,16 +1088,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getParagraphEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getParagraphEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getParagraphEnd()` @@ -1105,10 +1105,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// Returns the string which will be used at the end of a paragraph. ///@return the paragraph end string - _$jni.JString? getParagraphEnd() { + jni$_.JString? getParagraphEnd() { return _getParagraphEnd( - reference.pointer, _id_getParagraphEnd as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getParagraphEnd as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setParagraphEnd = _class.instanceMethodId( @@ -1116,27 +1116,27 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setParagraphEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setParagraphEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setParagraphEnd(java.lang.String s)` /// /// Sets the string which will be used at the end of a paragraph. ///@param s the paragraph end string void setParagraphEnd( - _$jni.JString? s, + jni$_.JString? s, ) { - final _$s = s?.reference ?? _$jni.jNullReference; + final _$s = s?.reference ?? jni$_.jNullReference; _setParagraphEnd(reference.pointer, - _id_setParagraphEnd as _$jni.JMethodIDPtr, _$s.pointer) + _id_setParagraphEnd as jni$_.JMethodIDPtr, _$s.pointer) .check(); } @@ -1145,16 +1145,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getPageStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getPageStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getPageStart()` @@ -1162,10 +1162,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// Returns the string which will be used at the beginning of a page. ///@return the page start string - _$jni.JString? getPageStart() { + jni$_.JString? getPageStart() { return _getPageStart( - reference.pointer, _id_getPageStart as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getPageStart as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setPageStart = _class.instanceMethodId( @@ -1173,26 +1173,26 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setPageStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setPageStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setPageStart(java.lang.String pageStartValue)` /// /// Sets the string which will be used at the beginning of a page. ///@param pageStartValue the page start string void setPageStart( - _$jni.JString? pageStartValue, + jni$_.JString? pageStartValue, ) { - final _$pageStartValue = pageStartValue?.reference ?? _$jni.jNullReference; - _setPageStart(reference.pointer, _id_setPageStart as _$jni.JMethodIDPtr, + final _$pageStartValue = pageStartValue?.reference ?? jni$_.jNullReference; + _setPageStart(reference.pointer, _id_setPageStart as jni$_.JMethodIDPtr, _$pageStartValue.pointer) .check(); } @@ -1202,16 +1202,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getPageEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getPageEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getPageEnd()` @@ -1219,9 +1219,9 @@ class PDFTextStripper extends _$jni.JObject { /// /// Returns the string which will be used at the end of a page. ///@return the page end string - _$jni.JString? getPageEnd() { - return _getPageEnd(reference.pointer, _id_getPageEnd as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getPageEnd() { + return _getPageEnd(reference.pointer, _id_getPageEnd as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setPageEnd = _class.instanceMethodId( @@ -1229,26 +1229,26 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setPageEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setPageEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setPageEnd(java.lang.String pageEndValue)` /// /// Sets the string which will be used at the end of a page. ///@param pageEndValue the page end string void setPageEnd( - _$jni.JString? pageEndValue, + jni$_.JString? pageEndValue, ) { - final _$pageEndValue = pageEndValue?.reference ?? _$jni.jNullReference; - _setPageEnd(reference.pointer, _id_setPageEnd as _$jni.JMethodIDPtr, + final _$pageEndValue = pageEndValue?.reference ?? jni$_.jNullReference; + _setPageEnd(reference.pointer, _id_setPageEnd as jni$_.JMethodIDPtr, _$pageEndValue.pointer) .check(); } @@ -1258,16 +1258,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getArticleStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getArticleStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getArticleStart()` @@ -1275,10 +1275,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// Returns the string which will be used at the beginning of an article. ///@return the article start string - _$jni.JString? getArticleStart() { + jni$_.JString? getArticleStart() { return _getArticleStart( - reference.pointer, _id_getArticleStart as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getArticleStart as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setArticleStart = _class.instanceMethodId( @@ -1286,29 +1286,29 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setArticleStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setArticleStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setArticleStart(java.lang.String articleStartValue)` /// /// Sets the string which will be used at the beginning of an article. ///@param articleStartValue the article start string void setArticleStart( - _$jni.JString? articleStartValue, + jni$_.JString? articleStartValue, ) { final _$articleStartValue = - articleStartValue?.reference ?? _$jni.jNullReference; + articleStartValue?.reference ?? jni$_.jNullReference; _setArticleStart( reference.pointer, - _id_setArticleStart as _$jni.JMethodIDPtr, + _id_setArticleStart as jni$_.JMethodIDPtr, _$articleStartValue.pointer) .check(); } @@ -1318,16 +1318,16 @@ class PDFTextStripper extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getArticleEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getArticleEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getArticleEnd()` @@ -1335,10 +1335,10 @@ class PDFTextStripper extends _$jni.JObject { /// /// Returns the string which will be used at the end of an article. ///@return the article end string - _$jni.JString? getArticleEnd() { + jni$_.JString? getArticleEnd() { return _getArticleEnd( - reference.pointer, _id_getArticleEnd as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getArticleEnd as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setArticleEnd = _class.instanceMethodId( @@ -1346,101 +1346,101 @@ class PDFTextStripper extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setArticleEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setArticleEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setArticleEnd(java.lang.String articleEndValue)` /// /// Sets the string which will be used at the end of an article. ///@param articleEndValue the article end string void setArticleEnd( - _$jni.JString? articleEndValue, + jni$_.JString? articleEndValue, ) { final _$articleEndValue = - articleEndValue?.reference ?? _$jni.jNullReference; - _setArticleEnd(reference.pointer, _id_setArticleEnd as _$jni.JMethodIDPtr, + articleEndValue?.reference ?? jni$_.jNullReference; + _setArticleEnd(reference.pointer, _id_setArticleEnd as jni$_.JMethodIDPtr, _$articleEndValue.pointer) .check(); } } final class $PDFTextStripper$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $PDFTextStripper$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lorg/apache/pdfbox/text/PDFTextStripper;'; - @_$jni.internal - @_$core.override - PDFTextStripper? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + PDFTextStripper? fromReference(jni$_.JReference reference) => reference.isNull ? null : PDFTextStripper.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($PDFTextStripper$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($PDFTextStripper$NullableType) && other is $PDFTextStripper$NullableType; } } -final class $PDFTextStripper$Type extends _$jni.JObjType { - @_$jni.internal +final class $PDFTextStripper$Type extends jni$_.JObjType { + @jni$_.internal const $PDFTextStripper$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lorg/apache/pdfbox/text/PDFTextStripper;'; - @_$jni.internal - @_$core.override - PDFTextStripper fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + PDFTextStripper fromReference(jni$_.JReference reference) => PDFTextStripper.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $PDFTextStripper$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($PDFTextStripper$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($PDFTextStripper$Type) && other is $PDFTextStripper$Type; diff --git a/pkgs/jnigen/lib/src/bindings/dart_generator.dart b/pkgs/jnigen/lib/src/bindings/dart_generator.dart index 97f73a861..afa9d7363 100644 --- a/pkgs/jnigen/lib/src/bindings/dart_generator.dart +++ b/pkgs/jnigen/lib/src/bindings/dart_generator.dart @@ -14,8 +14,8 @@ import 'resolver.dart'; import 'visitor.dart'; // Import prefixes. -const _jni = '_\$jni'; -const _core = '_\$core'; +const _jni = r'jni$_'; +const _core = r'core$_'; // dart:core types const _override = '@$_core.override'; diff --git a/pkgs/jnigen/lib/src/bindings/resolver.dart b/pkgs/jnigen/lib/src/bindings/resolver.dart index a6805237c..25ba34ded 100644 --- a/pkgs/jnigen/lib/src/bindings/resolver.dart +++ b/pkgs/jnigen/lib/src/bindings/resolver.dart @@ -22,7 +22,10 @@ class Resolver { final List _importStrings = []; final Set _relativeImportedClasses = {}; - final Map _importedNameToClass = {}; + final Map _importedNameToClass = { + r'_$core': '', + r'_$jni': '', + }; final Map _classToImportedName = {}; Resolver({ @@ -51,7 +54,7 @@ class Resolver { /// Get the prefix for the class String resolvePrefix(ClassDecl classDecl) { if (classDecl.path == 'package:jni/jni.dart') { - return '_\$jni.'; + return r'jni$_.'; } final binaryName = classDecl.binaryName; final target = getFileClassName(binaryName); @@ -83,18 +86,14 @@ class Resolver { } final pkgName = cutFromLast(target, '.')[1].toLowerCase(); - if (pkgName.isEmpty) { - throw UnsupportedError('No package could be deduced from ' - 'qualified binaryName'); - } // We always name imports with an underscore suffix, so that they can be // never shadowed by a parameter or local variable. - var importedName = '${pkgName}_'; + var importedName = '$pkgName\$_'; var suffix = 0; while (_importedNameToClass.containsKey(importedName)) { - suffix++; - importedName = '$pkgName${suffix}_'; + ++suffix; + importedName = '$pkgName\$_$suffix'; } _importedNameToClass[importedName] = target; diff --git a/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonFactory.dart b/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonFactory.dart index dbcb9aeb3..a9b078db9 100644 --- a/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonFactory.dart +++ b/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonFactory.dart @@ -47,30 +47,30 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; -import 'JsonParser.dart' as jsonparser_; +import 'JsonParser.dart' as jsonparser$_; /// from: `com.fasterxml.jackson.core.JsonFactory$Feature` /// /// Enumeration that defines all on/off features that can only be /// changed for JsonFactory. -class JsonFactory_Feature extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonFactory_Feature extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonFactory_Feature.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/fasterxml/jackson/core/JsonFactory$Feature'); + jni$_.JClass.forName(r'com/fasterxml/jackson/core/JsonFactory$Feature'); /// The type which includes information such as the signature of this class. static const nullableType = $JsonFactory_Feature$NullableType(); @@ -80,24 +80,24 @@ class JsonFactory_Feature extends _$jni.JObject { r'()[Lcom/fasterxml/jackson/core/JsonFactory$Feature;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.fasterxml.jackson.core.JsonFactory.Feature[] values()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray? values() { - return _values(_class.reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JArray?>( - const _$jni.JArrayNullableType( + static jni$_.JArray? values() { + return _values(_class.reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( $JsonFactory_Feature$NullableType())); } @@ -106,24 +106,24 @@ class JsonFactory_Feature extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonFactory$Feature;', ); - static final _valueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _valueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.fasterxml.jackson.core.JsonFactory.Feature valueOf(java.lang.String name)` /// The returned object must be released after use, by calling the [release] method. static JsonFactory_Feature? valueOf( - _$jni.JString? name, + jni$_.JString? name, ) { - final _$name = name?.reference ?? _$jni.jNullReference; - return _valueOf(_class.reference.pointer, _id_valueOf as _$jni.JMethodIDPtr, + final _$name = name?.reference ?? jni$_.jNullReference; + return _valueOf(_class.reference.pointer, _id_valueOf as jni$_.JMethodIDPtr, _$name.pointer) .object( const $JsonFactory_Feature$NullableType()); @@ -134,16 +134,16 @@ class JsonFactory_Feature extends _$jni.JObject { r'()I', ); - static final _collectDefaults = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _collectDefaults = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public int collectDefaults()` @@ -153,7 +153,7 @@ class JsonFactory_Feature extends _$jni.JObject { ///@return Bit field of features enabled by default static int collectDefaults() { return _collectDefaults( - _class.reference.pointer, _id_collectDefaults as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_collectDefaults as jni$_.JMethodIDPtr) .integer; } @@ -162,22 +162,22 @@ class JsonFactory_Feature extends _$jni.JObject { r'()Z', ); - static final _enabledByDefault = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _enabledByDefault = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean enabledByDefault()` bool enabledByDefault() { return _enabledByDefault( - reference.pointer, _id_enabledByDefault as _$jni.JMethodIDPtr) + reference.pointer, _id_enabledByDefault as jni$_.JMethodIDPtr) .boolean; } @@ -186,23 +186,23 @@ class JsonFactory_Feature extends _$jni.JObject { r'(I)Z', ); - static final _enabledIn = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallBooleanMethod') + static final _enabledIn = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public boolean enabledIn(int flags)` bool enabledIn( int flags, ) { return _enabledIn( - reference.pointer, _id_enabledIn as _$jni.JMethodIDPtr, flags) + reference.pointer, _id_enabledIn as jni$_.JMethodIDPtr, flags) .boolean; } @@ -211,58 +211,58 @@ class JsonFactory_Feature extends _$jni.JObject { r'()I', ); - static final _getMask = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getMask = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getMask()` int getMask() { - return _getMask(reference.pointer, _id_getMask as _$jni.JMethodIDPtr) + return _getMask(reference.pointer, _id_getMask as jni$_.JMethodIDPtr) .integer; } } final class $JsonFactory_Feature$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonFactory_Feature$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonFactory$Feature;'; - @_$jni.internal - @_$core.override - JsonFactory_Feature? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonFactory_Feature? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonFactory_Feature.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonFactory_Feature$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonFactory_Feature$NullableType) && other is $JsonFactory_Feature$NullableType; @@ -270,37 +270,37 @@ final class $JsonFactory_Feature$NullableType } final class $JsonFactory_Feature$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonFactory_Feature$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonFactory$Feature;'; - @_$jni.internal - @_$core.override - JsonFactory_Feature fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonFactory_Feature fromReference(jni$_.JReference reference) => JsonFactory_Feature.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonFactory_Feature$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonFactory_Feature$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonFactory_Feature$Type) && other is $JsonFactory_Feature$Type; @@ -326,19 +326,19 @@ final class $JsonFactory_Feature$Type /// the default constructor is used for constructing factory /// instances. ///@author Tatu Saloranta -class JsonFactory extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonFactory extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonFactory.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/fasterxml/jackson/core/JsonFactory'); + jni$_.JClass.forName(r'com/fasterxml/jackson/core/JsonFactory'); /// The type which includes information such as the signature of this class. static const nullableType = $JsonFactory$NullableType(); @@ -353,8 +353,8 @@ class JsonFactory extends _$jni.JObject { /// /// Name used to identify JSON format /// (and returned by \#getFormatName() - static _$jni.JString? get FORMAT_NAME_JSON => - _id_FORMAT_NAME_JSON.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get FORMAT_NAME_JSON => + _id_FORMAT_NAME_JSON.get(_class, const jni$_.JStringNullableType()); static final _id_DEFAULT_ROOT_VALUE_SEPARATOR = _class.staticFieldId( r'DEFAULT_ROOT_VALUE_SEPARATOR', @@ -363,9 +363,9 @@ class JsonFactory extends _$jni.JObject { /// from: `static public final com.fasterxml.jackson.core.SerializableString DEFAULT_ROOT_VALUE_SEPARATOR` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JObject? get DEFAULT_ROOT_VALUE_SEPARATOR => + static jni$_.JObject? get DEFAULT_ROOT_VALUE_SEPARATOR => _id_DEFAULT_ROOT_VALUE_SEPARATOR.get( - _class, const _$jni.JObjectNullableType()); + _class, const jni$_.JObjectNullableType()); /// from: `static public final char DEFAULT_QUOTE_CHAR` /// @@ -375,16 +375,16 @@ class JsonFactory extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` @@ -400,7 +400,7 @@ class JsonFactory extends _$jni.JObject { /// factory instance. factory JsonFactory() { return JsonFactory.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -408,25 +408,25 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/ObjectCodec;)V', ); - static final _new$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (com.fasterxml.jackson.core.ObjectCodec oc)` /// The returned object must be released after use, by calling the [release] method. factory JsonFactory.new$1( - _$jni.JObject? oc, + jni$_.JObject? oc, ) { - final _$oc = oc?.reference ?? _$jni.jNullReference; + final _$oc = oc?.reference ?? jni$_.jNullReference; return JsonFactory.fromReference(_new$1(_class.reference.pointer, - _id_new$1 as _$jni.JMethodIDPtr, _$oc.pointer) + _id_new$1 as jni$_.JMethodIDPtr, _$oc.pointer) .reference); } @@ -434,16 +434,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonFactoryBuilder;)V', ); - static final _new$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (com.fasterxml.jackson.core.JsonFactoryBuilder b)` /// The returned object must be released after use, by calling the [release] method. @@ -452,11 +452,11 @@ class JsonFactory extends _$jni.JObject { ///@param b Builder that contains settings to use ///@since 2.10 factory JsonFactory.new$2( - _$jni.JObject? b, + jni$_.JObject? b, ) { - final _$b = b?.reference ?? _$jni.jNullReference; + final _$b = b?.reference ?? jni$_.jNullReference; return JsonFactory.fromReference(_new$2(_class.reference.pointer, - _id_new$2 as _$jni.JMethodIDPtr, _$b.pointer) + _id_new$2 as jni$_.JMethodIDPtr, _$b.pointer) .reference); } @@ -465,16 +465,16 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/TSFBuilder;', ); - static final _rebuild = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _rebuild = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.TSFBuilder rebuild()` @@ -484,9 +484,9 @@ class JsonFactory extends _$jni.JObject { /// with settings of this factory. ///@return Builder instance to use ///@since 2.10 - _$jni.JObject? rebuild() { - return _rebuild(reference.pointer, _id_rebuild as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? rebuild() { + return _rebuild(reference.pointer, _id_rebuild as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_builder = _class.staticMethodId( @@ -494,16 +494,16 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/TSFBuilder;', ); - static final _builder = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _builder = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.fasterxml.jackson.core.TSFBuilder builder()` @@ -517,9 +517,9 @@ class JsonFactory extends _$jni.JObject { /// NOTE: signature unfortunately does not expose true implementation type; this /// will be fixed in 3.0. ///@return Builder instance to use - static _$jni.JObject? builder() { - return _builder(_class.reference.pointer, _id_builder as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + static jni$_.JObject? builder() { + return _builder(_class.reference.pointer, _id_builder as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_copy = _class.instanceMethodId( @@ -527,16 +527,16 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _copy = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _copy = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.JsonFactory copy()` @@ -555,7 +555,7 @@ class JsonFactory extends _$jni.JObject { ///@return Copy of this factory instance ///@since 2.1 JsonFactory? copy() { - return _copy(reference.pointer, _id_copy as _$jni.JMethodIDPtr) + return _copy(reference.pointer, _id_copy as jni$_.JMethodIDPtr) .object(const $JsonFactory$NullableType()); } @@ -564,16 +564,16 @@ class JsonFactory extends _$jni.JObject { r'()Z', ); - static final _requiresPropertyOrdering = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _requiresPropertyOrdering = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean requiresPropertyOrdering()` @@ -594,7 +594,7 @@ class JsonFactory extends _$jni.JObject { ///@since 2.3 bool requiresPropertyOrdering() { return _requiresPropertyOrdering(reference.pointer, - _id_requiresPropertyOrdering as _$jni.JMethodIDPtr) + _id_requiresPropertyOrdering as jni$_.JMethodIDPtr) .boolean; } @@ -603,16 +603,16 @@ class JsonFactory extends _$jni.JObject { r'()Z', ); - static final _canHandleBinaryNatively = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _canHandleBinaryNatively = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean canHandleBinaryNatively()` @@ -630,7 +630,7 @@ class JsonFactory extends _$jni.JObject { ///@since 2.3 bool canHandleBinaryNatively() { return _canHandleBinaryNatively(reference.pointer, - _id_canHandleBinaryNatively as _$jni.JMethodIDPtr) + _id_canHandleBinaryNatively as jni$_.JMethodIDPtr) .boolean; } @@ -639,16 +639,16 @@ class JsonFactory extends _$jni.JObject { r'()Z', ); - static final _canUseCharArrays = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _canUseCharArrays = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean canUseCharArrays()` @@ -666,7 +666,7 @@ class JsonFactory extends _$jni.JObject { ///@since 2.4 bool canUseCharArrays() { return _canUseCharArrays( - reference.pointer, _id_canUseCharArrays as _$jni.JMethodIDPtr) + reference.pointer, _id_canUseCharArrays as jni$_.JMethodIDPtr) .boolean; } @@ -675,16 +675,16 @@ class JsonFactory extends _$jni.JObject { r'()Z', ); - static final _canParseAsync = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _canParseAsync = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean canParseAsync()` @@ -698,7 +698,7 @@ class JsonFactory extends _$jni.JObject { ///@since 2.9 bool canParseAsync() { return _canParseAsync( - reference.pointer, _id_canParseAsync as _$jni.JMethodIDPtr) + reference.pointer, _id_canParseAsync as jni$_.JMethodIDPtr) .boolean; } @@ -707,24 +707,24 @@ class JsonFactory extends _$jni.JObject { r'()Ljava/lang/Class;', ); - static final _getFormatReadFeatureType = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFormatReadFeatureType = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Class getFormatReadFeatureType()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? getFormatReadFeatureType() { + jni$_.JObject? getFormatReadFeatureType() { return _getFormatReadFeatureType(reference.pointer, - _id_getFormatReadFeatureType as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_getFormatReadFeatureType as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getFormatWriteFeatureType = _class.instanceMethodId( @@ -732,24 +732,24 @@ class JsonFactory extends _$jni.JObject { r'()Ljava/lang/Class;', ); - static final _getFormatWriteFeatureType = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFormatWriteFeatureType = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Class getFormatWriteFeatureType()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? getFormatWriteFeatureType() { + jni$_.JObject? getFormatWriteFeatureType() { return _getFormatWriteFeatureType(reference.pointer, - _id_getFormatWriteFeatureType as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_getFormatWriteFeatureType as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_canUseSchema = _class.instanceMethodId( @@ -757,16 +757,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/FormatSchema;)Z', ); - static final _canUseSchema = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _canUseSchema = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)` /// @@ -780,11 +780,11 @@ class JsonFactory extends _$jni.JObject { ///@return Whether parsers and generators constructed by this factory /// can use specified format schema instance bool canUseSchema( - _$jni.JObject? schema, + jni$_.JObject? schema, ) { - final _$schema = schema?.reference ?? _$jni.jNullReference; + final _$schema = schema?.reference ?? jni$_.jNullReference; return _canUseSchema(reference.pointer, - _id_canUseSchema as _$jni.JMethodIDPtr, _$schema.pointer) + _id_canUseSchema as jni$_.JMethodIDPtr, _$schema.pointer) .boolean; } @@ -793,16 +793,16 @@ class JsonFactory extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getFormatName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFormatName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getFormatName()` @@ -814,10 +814,10 @@ class JsonFactory extends _$jni.JObject { /// Note: sub-classes should override this method; default /// implementation will return null for all sub-classes ///@return Name of the format handled by parsers, generators this factory creates - _$jni.JString? getFormatName() { + jni$_.JString? getFormatName() { return _getFormatName( - reference.pointer, _id_getFormatName as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getFormatName as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_hasFormat = _class.instanceMethodId( @@ -825,26 +825,26 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/format/InputAccessor;)Lcom/fasterxml/jackson/core/format/MatchStrength;', ); - static final _hasFormat = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _hasFormat = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? hasFormat( - _$jni.JObject? acc, + jni$_.JObject? hasFormat( + jni$_.JObject? acc, ) { - final _$acc = acc?.reference ?? _$jni.jNullReference; - return _hasFormat(reference.pointer, _id_hasFormat as _$jni.JMethodIDPtr, + final _$acc = acc?.reference ?? jni$_.jNullReference; + return _hasFormat(reference.pointer, _id_hasFormat as jni$_.JMethodIDPtr, _$acc.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_requiresCustomCodec = _class.instanceMethodId( @@ -852,16 +852,16 @@ class JsonFactory extends _$jni.JObject { r'()Z', ); - static final _requiresCustomCodec = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _requiresCustomCodec = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean requiresCustomCodec()` @@ -877,7 +877,7 @@ class JsonFactory extends _$jni.JObject { ///@since 2.1 bool requiresCustomCodec() { return _requiresCustomCodec( - reference.pointer, _id_requiresCustomCodec as _$jni.JMethodIDPtr) + reference.pointer, _id_requiresCustomCodec as jni$_.JMethodIDPtr) .boolean; } @@ -886,23 +886,23 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/Version;', ); - static final _version = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _version = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.Version version()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? version() { - return _version(reference.pointer, _id_version as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? version() { + return _version(reference.pointer, _id_version as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_configure = _class.instanceMethodId( @@ -910,17 +910,17 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonFactory$Feature;Z)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _configure = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _configure = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public final com.fasterxml.jackson.core.JsonFactory configure(com.fasterxml.jackson.core.JsonFactory.Feature f, boolean state)` /// The returned object must be released after use, by calling the [release] method. @@ -935,8 +935,8 @@ class JsonFactory extends _$jni.JObject { JsonFactory_Feature? f, bool state, ) { - final _$f = f?.reference ?? _$jni.jNullReference; - return _configure(reference.pointer, _id_configure as _$jni.JMethodIDPtr, + final _$f = f?.reference ?? jni$_.jNullReference; + return _configure(reference.pointer, _id_configure as jni$_.JMethodIDPtr, _$f.pointer, state ? 1 : 0) .object(const $JsonFactory$NullableType()); } @@ -946,16 +946,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonFactory$Feature;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _enable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _enable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory enable(com.fasterxml.jackson.core.JsonFactory.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -968,9 +968,9 @@ class JsonFactory extends _$jni.JObject { JsonFactory? enable( JsonFactory_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _enable( - reference.pointer, _id_enable as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_enable as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonFactory$NullableType()); } @@ -979,16 +979,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonFactory$Feature;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _disable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _disable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory disable(com.fasterxml.jackson.core.JsonFactory.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -1001,9 +1001,9 @@ class JsonFactory extends _$jni.JObject { JsonFactory? disable( JsonFactory_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _disable( - reference.pointer, _id_disable as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_disable as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonFactory$NullableType()); } @@ -1012,16 +1012,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonFactory$Feature;)Z', ); - static final _isEnabled = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _isEnabled = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final boolean isEnabled(com.fasterxml.jackson.core.JsonFactory.Feature f)` /// @@ -1031,9 +1031,9 @@ class JsonFactory extends _$jni.JObject { bool isEnabled( JsonFactory_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _isEnabled( - reference.pointer, _id_isEnabled as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_isEnabled as jni$_.JMethodIDPtr, _$f.pointer) .boolean; } @@ -1042,22 +1042,22 @@ class JsonFactory extends _$jni.JObject { r'()I', ); - static final _getParserFeatures = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getParserFeatures = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final int getParserFeatures()` int getParserFeatures() { return _getParserFeatures( - reference.pointer, _id_getParserFeatures as _$jni.JMethodIDPtr) + reference.pointer, _id_getParserFeatures as jni$_.JMethodIDPtr) .integer; } @@ -1066,22 +1066,22 @@ class JsonFactory extends _$jni.JObject { r'()I', ); - static final _getGeneratorFeatures = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getGeneratorFeatures = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final int getGeneratorFeatures()` int getGeneratorFeatures() { return _getGeneratorFeatures( - reference.pointer, _id_getGeneratorFeatures as _$jni.JMethodIDPtr) + reference.pointer, _id_getGeneratorFeatures as jni$_.JMethodIDPtr) .integer; } @@ -1090,22 +1090,22 @@ class JsonFactory extends _$jni.JObject { r'()I', ); - static final _getFormatParserFeatures = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFormatParserFeatures = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getFormatParserFeatures()` int getFormatParserFeatures() { return _getFormatParserFeatures(reference.pointer, - _id_getFormatParserFeatures as _$jni.JMethodIDPtr) + _id_getFormatParserFeatures as jni$_.JMethodIDPtr) .integer; } @@ -1115,22 +1115,22 @@ class JsonFactory extends _$jni.JObject { ); static final _getFormatGeneratorFeatures = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getFormatGeneratorFeatures()` int getFormatGeneratorFeatures() { return _getFormatGeneratorFeatures(reference.pointer, - _id_getFormatGeneratorFeatures as _$jni.JMethodIDPtr) + _id_getFormatGeneratorFeatures as jni$_.JMethodIDPtr) .integer; } @@ -1139,17 +1139,17 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;Z)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _configure$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _configure$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public final com.fasterxml.jackson.core.JsonFactory configure(com.fasterxml.jackson.core.JsonParser.Feature f, boolean state)` /// The returned object must be released after use, by calling the [release] method. @@ -1160,12 +1160,12 @@ class JsonFactory extends _$jni.JObject { ///@param state Whether to enable or disable the feature ///@return This factory instance (to allow call chaining) JsonFactory? configure$1( - jsonparser_.JsonParser_Feature? f, + jsonparser$_.JsonParser_Feature? f, bool state, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _configure$1(reference.pointer, - _id_configure$1 as _$jni.JMethodIDPtr, _$f.pointer, state ? 1 : 0) + _id_configure$1 as jni$_.JMethodIDPtr, _$f.pointer, state ? 1 : 0) .object(const $JsonFactory$NullableType()); } @@ -1174,16 +1174,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _enable$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _enable$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory enable(com.fasterxml.jackson.core.JsonParser.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -1193,11 +1193,11 @@ class JsonFactory extends _$jni.JObject { ///@param f Feature to enable ///@return This factory instance (to allow call chaining) JsonFactory? enable$1( - jsonparser_.JsonParser_Feature? f, + jsonparser$_.JsonParser_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _enable$1( - reference.pointer, _id_enable$1 as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_enable$1 as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonFactory$NullableType()); } @@ -1206,16 +1206,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _disable$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _disable$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory disable(com.fasterxml.jackson.core.JsonParser.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -1225,11 +1225,11 @@ class JsonFactory extends _$jni.JObject { ///@param f Feature to disable ///@return This factory instance (to allow call chaining) JsonFactory? disable$1( - jsonparser_.JsonParser_Feature? f, + jsonparser$_.JsonParser_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _disable$1( - reference.pointer, _id_disable$1 as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_disable$1 as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonFactory$NullableType()); } @@ -1238,16 +1238,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;)Z', ); - static final _isEnabled$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _isEnabled$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final boolean isEnabled(com.fasterxml.jackson.core.JsonParser.Feature f)` /// @@ -1255,11 +1255,11 @@ class JsonFactory extends _$jni.JObject { ///@param f Feature to check ///@return True if specified feature is enabled bool isEnabled$1( - jsonparser_.JsonParser_Feature? f, + jsonparser$_.JsonParser_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _isEnabled$1(reference.pointer, - _id_isEnabled$1 as _$jni.JMethodIDPtr, _$f.pointer) + _id_isEnabled$1 as jni$_.JMethodIDPtr, _$f.pointer) .boolean; } @@ -1268,16 +1268,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/StreamReadFeature;)Z', ); - static final _isEnabled$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _isEnabled$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final boolean isEnabled(com.fasterxml.jackson.core.StreamReadFeature f)` /// @@ -1286,11 +1286,11 @@ class JsonFactory extends _$jni.JObject { ///@return True if specified feature is enabled ///@since 2.10 bool isEnabled$2( - _$jni.JObject? f, + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _isEnabled$2(reference.pointer, - _id_isEnabled$2 as _$jni.JMethodIDPtr, _$f.pointer) + _id_isEnabled$2 as jni$_.JMethodIDPtr, _$f.pointer) .boolean; } @@ -1299,16 +1299,16 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/io/InputDecorator;', ); - static final _getInputDecorator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getInputDecorator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.io.InputDecorator getInputDecorator()` @@ -1317,10 +1317,10 @@ class JsonFactory extends _$jni.JObject { /// Method for getting currently configured input decorator (if any; /// there is no default decorator). ///@return InputDecorator configured, if any - _$jni.JObject? getInputDecorator() { + jni$_.JObject? getInputDecorator() { return _getInputDecorator( - reference.pointer, _id_getInputDecorator as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getInputDecorator as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setInputDecorator = _class.instanceMethodId( @@ -1328,16 +1328,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/io/InputDecorator;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _setInputDecorator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setInputDecorator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory setInputDecorator(com.fasterxml.jackson.core.io.InputDecorator d)` /// The returned object must be released after use, by calling the [release] method. @@ -1347,11 +1347,11 @@ class JsonFactory extends _$jni.JObject { ///@return This factory instance (to allow call chaining) ///@deprecated Since 2.10 use JsonFactoryBuilder\#inputDecorator(InputDecorator) instead JsonFactory? setInputDecorator( - _$jni.JObject? d, + jni$_.JObject? d, ) { - final _$d = d?.reference ?? _$jni.jNullReference; + final _$d = d?.reference ?? jni$_.jNullReference; return _setInputDecorator(reference.pointer, - _id_setInputDecorator as _$jni.JMethodIDPtr, _$d.pointer) + _id_setInputDecorator as jni$_.JMethodIDPtr, _$d.pointer) .object(const $JsonFactory$NullableType()); } @@ -1360,17 +1360,17 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;Z)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _configure$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _configure$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public final com.fasterxml.jackson.core.JsonFactory configure(com.fasterxml.jackson.core.JsonGenerator.Feature f, boolean state)` /// The returned object must be released after use, by calling the [release] method. @@ -1381,12 +1381,12 @@ class JsonFactory extends _$jni.JObject { ///@param state Whether to enable or disable the feature ///@return This factory instance (to allow call chaining) JsonFactory? configure$2( - _$jni.JObject? f, + jni$_.JObject? f, bool state, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _configure$2(reference.pointer, - _id_configure$2 as _$jni.JMethodIDPtr, _$f.pointer, state ? 1 : 0) + _id_configure$2 as jni$_.JMethodIDPtr, _$f.pointer, state ? 1 : 0) .object(const $JsonFactory$NullableType()); } @@ -1395,16 +1395,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _enable$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _enable$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory enable(com.fasterxml.jackson.core.JsonGenerator.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -1414,11 +1414,11 @@ class JsonFactory extends _$jni.JObject { ///@param f Feature to enable ///@return This factory instance (to allow call chaining) JsonFactory? enable$2( - _$jni.JObject? f, + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _enable$2( - reference.pointer, _id_enable$2 as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_enable$2 as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonFactory$NullableType()); } @@ -1427,16 +1427,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _disable$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _disable$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory disable(com.fasterxml.jackson.core.JsonGenerator.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -1446,11 +1446,11 @@ class JsonFactory extends _$jni.JObject { ///@param f Feature to disable ///@return This factory instance (to allow call chaining) JsonFactory? disable$2( - _$jni.JObject? f, + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _disable$2( - reference.pointer, _id_disable$2 as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_disable$2 as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonFactory$NullableType()); } @@ -1459,16 +1459,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z', ); - static final _isEnabled$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _isEnabled$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final boolean isEnabled(com.fasterxml.jackson.core.JsonGenerator.Feature f)` /// @@ -1476,11 +1476,11 @@ class JsonFactory extends _$jni.JObject { ///@param f Feature to check ///@return Whether specified feature is enabled bool isEnabled$3( - _$jni.JObject? f, + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _isEnabled$3(reference.pointer, - _id_isEnabled$3 as _$jni.JMethodIDPtr, _$f.pointer) + _id_isEnabled$3 as jni$_.JMethodIDPtr, _$f.pointer) .boolean; } @@ -1489,16 +1489,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/StreamWriteFeature;)Z', ); - static final _isEnabled$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _isEnabled$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final boolean isEnabled(com.fasterxml.jackson.core.StreamWriteFeature f)` /// @@ -1507,11 +1507,11 @@ class JsonFactory extends _$jni.JObject { ///@return Whether specified feature is enabled ///@since 2.10 bool isEnabled$4( - _$jni.JObject? f, + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _isEnabled$4(reference.pointer, - _id_isEnabled$4 as _$jni.JMethodIDPtr, _$f.pointer) + _id_isEnabled$4 as jni$_.JMethodIDPtr, _$f.pointer) .boolean; } @@ -1520,16 +1520,16 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/io/CharacterEscapes;', ); - static final _getCharacterEscapes = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCharacterEscapes = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.io.CharacterEscapes getCharacterEscapes()` @@ -1538,10 +1538,10 @@ class JsonFactory extends _$jni.JObject { /// Method for accessing custom escapes factory uses for JsonGenerators /// it creates. ///@return Configured {@code CharacterEscapes}, if any; {@code null} if none - _$jni.JObject? getCharacterEscapes() { + jni$_.JObject? getCharacterEscapes() { return _getCharacterEscapes( - reference.pointer, _id_getCharacterEscapes as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getCharacterEscapes as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setCharacterEscapes = _class.instanceMethodId( @@ -1549,16 +1549,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/io/CharacterEscapes;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _setCharacterEscapes = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setCharacterEscapes = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory setCharacterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes esc)` /// The returned object must be released after use, by calling the [release] method. @@ -1568,11 +1568,11 @@ class JsonFactory extends _$jni.JObject { ///@param esc CharaterEscapes to set (or {@code null} for "none") ///@return This factory instance (to allow call chaining) JsonFactory? setCharacterEscapes( - _$jni.JObject? esc, + jni$_.JObject? esc, ) { - final _$esc = esc?.reference ?? _$jni.jNullReference; + final _$esc = esc?.reference ?? jni$_.jNullReference; return _setCharacterEscapes(reference.pointer, - _id_setCharacterEscapes as _$jni.JMethodIDPtr, _$esc.pointer) + _id_setCharacterEscapes as jni$_.JMethodIDPtr, _$esc.pointer) .object(const $JsonFactory$NullableType()); } @@ -1581,16 +1581,16 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/io/OutputDecorator;', ); - static final _getOutputDecorator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getOutputDecorator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.io.OutputDecorator getOutputDecorator()` @@ -1600,10 +1600,10 @@ class JsonFactory extends _$jni.JObject { /// there is no default decorator). ///@return OutputDecorator configured for generators factory creates, if any; /// {@code null} if none. - _$jni.JObject? getOutputDecorator() { + jni$_.JObject? getOutputDecorator() { return _getOutputDecorator( - reference.pointer, _id_getOutputDecorator as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getOutputDecorator as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setOutputDecorator = _class.instanceMethodId( @@ -1611,16 +1611,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/io/OutputDecorator;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _setOutputDecorator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setOutputDecorator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory setOutputDecorator(com.fasterxml.jackson.core.io.OutputDecorator d)` /// The returned object must be released after use, by calling the [release] method. @@ -1630,11 +1630,11 @@ class JsonFactory extends _$jni.JObject { ///@param d Output decorator to use, if any ///@deprecated Since 2.10 use JsonFactoryBuilder\#outputDecorator(OutputDecorator) instead JsonFactory? setOutputDecorator( - _$jni.JObject? d, + jni$_.JObject? d, ) { - final _$d = d?.reference ?? _$jni.jNullReference; + final _$d = d?.reference ?? jni$_.jNullReference; return _setOutputDecorator(reference.pointer, - _id_setOutputDecorator as _$jni.JMethodIDPtr, _$d.pointer) + _id_setOutputDecorator as jni$_.JMethodIDPtr, _$d.pointer) .object(const $JsonFactory$NullableType()); } @@ -1643,16 +1643,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _setRootValueSeparator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setRootValueSeparator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory setRootValueSeparator(java.lang.String sep)` /// The returned object must be released after use, by calling the [release] method. @@ -1663,11 +1663,11 @@ class JsonFactory extends _$jni.JObject { /// automatically added ///@return This factory instance (to allow call chaining) JsonFactory? setRootValueSeparator( - _$jni.JString? sep, + jni$_.JString? sep, ) { - final _$sep = sep?.reference ?? _$jni.jNullReference; + final _$sep = sep?.reference ?? jni$_.jNullReference; return _setRootValueSeparator(reference.pointer, - _id_setRootValueSeparator as _$jni.JMethodIDPtr, _$sep.pointer) + _id_setRootValueSeparator as jni$_.JMethodIDPtr, _$sep.pointer) .object(const $JsonFactory$NullableType()); } @@ -1676,26 +1676,26 @@ class JsonFactory extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getRootValueSeparator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getRootValueSeparator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getRootValueSeparator()` /// The returned object must be released after use, by calling the [release] method. /// /// @return Root value separator configured, if any - _$jni.JString? getRootValueSeparator() { + jni$_.JString? getRootValueSeparator() { return _getRootValueSeparator( - reference.pointer, _id_getRootValueSeparator as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getRootValueSeparator as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setCodec = _class.instanceMethodId( @@ -1703,16 +1703,16 @@ class JsonFactory extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/ObjectCodec;)Lcom/fasterxml/jackson/core/JsonFactory;', ); - static final _setCodec = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setCodec = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonFactory setCodec(com.fasterxml.jackson.core.ObjectCodec oc)` /// The returned object must be released after use, by calling the [release] method. @@ -1725,11 +1725,11 @@ class JsonFactory extends _$jni.JObject { ///@param oc Codec to use ///@return This factory instance (to allow call chaining) JsonFactory? setCodec( - _$jni.JObject? oc, + jni$_.JObject? oc, ) { - final _$oc = oc?.reference ?? _$jni.jNullReference; + final _$oc = oc?.reference ?? jni$_.jNullReference; return _setCodec( - reference.pointer, _id_setCodec as _$jni.JMethodIDPtr, _$oc.pointer) + reference.pointer, _id_setCodec as jni$_.JMethodIDPtr, _$oc.pointer) .object(const $JsonFactory$NullableType()); } @@ -1738,23 +1738,23 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/ObjectCodec;', ); - static final _getCodec = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCodec = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.ObjectCodec getCodec()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? getCodec() { - return _getCodec(reference.pointer, _id_getCodec as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? getCodec() { + return _getCodec(reference.pointer, _id_getCodec as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_createParser = _class.instanceMethodId( @@ -1762,16 +1762,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/File;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(java.io.File f)` /// The returned object must be released after use, by calling the [release] method. @@ -1792,14 +1792,14 @@ class JsonFactory extends _$jni.JObject { /// the parser, since caller has no access to it. ///@param f File that contains JSON content to parse ///@since 2.1 - jsonparser_.JsonParser? createParser( - _$jni.JObject? f, + jsonparser$_.JsonParser? createParser( + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _createParser(reference.pointer, - _id_createParser as _$jni.JMethodIDPtr, _$f.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser as jni$_.JMethodIDPtr, _$f.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$1 = _class.instanceMethodId( @@ -1807,16 +1807,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/net/URL;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(java.net.URL url)` /// The returned object must be released after use, by calling the [release] method. @@ -1835,14 +1835,14 @@ class JsonFactory extends _$jni.JObject { /// the parser, since caller has no access to it. ///@param url URL pointing to resource that contains JSON content to parse ///@since 2.1 - jsonparser_.JsonParser? createParser$1( - _$jni.JObject? url, + jsonparser$_.JsonParser? createParser$1( + jni$_.JObject? url, ) { - final _$url = url?.reference ?? _$jni.jNullReference; + final _$url = url?.reference ?? jni$_.jNullReference; return _createParser$1(reference.pointer, - _id_createParser$1 as _$jni.JMethodIDPtr, _$url.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser$1 as jni$_.JMethodIDPtr, _$url.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$2 = _class.instanceMethodId( @@ -1850,16 +1850,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/InputStream;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(java.io.InputStream in)` /// The returned object must be released after use, by calling the [release] method. @@ -1881,14 +1881,14 @@ class JsonFactory extends _$jni.JObject { /// For other charsets use \#createParser(java.io.Reader). ///@param in InputStream to use for reading JSON content to parse ///@since 2.1 - jsonparser_.JsonParser? createParser$2( - _$jni.JObject? in$, + jsonparser$_.JsonParser? createParser$2( + jni$_.JObject? in$, ) { - final _$in$ = in$?.reference ?? _$jni.jNullReference; + final _$in$ = in$?.reference ?? jni$_.jNullReference; return _createParser$2(reference.pointer, - _id_createParser$2 as _$jni.JMethodIDPtr, _$in$.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser$2 as jni$_.JMethodIDPtr, _$in$.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$3 = _class.instanceMethodId( @@ -1896,16 +1896,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/Reader;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(java.io.Reader r)` /// The returned object must be released after use, by calling the [release] method. @@ -1920,14 +1920,14 @@ class JsonFactory extends _$jni.JObject { /// is enabled. ///@param r Reader to use for reading JSON content to parse ///@since 2.1 - jsonparser_.JsonParser? createParser$3( - _$jni.JObject? r, + jsonparser$_.JsonParser? createParser$3( + jni$_.JObject? r, ) { - final _$r = r?.reference ?? _$jni.jNullReference; + final _$r = r?.reference ?? jni$_.jNullReference; return _createParser$3(reference.pointer, - _id_createParser$3 as _$jni.JMethodIDPtr, _$r.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser$3 as jni$_.JMethodIDPtr, _$r.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$4 = _class.instanceMethodId( @@ -1935,16 +1935,16 @@ class JsonFactory extends _$jni.JObject { r'([B)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(byte[] data)` /// The returned object must be released after use, by calling the [release] method. @@ -1952,14 +1952,14 @@ class JsonFactory extends _$jni.JObject { /// Method for constructing parser for parsing /// the contents of given byte array. ///@since 2.1 - jsonparser_.JsonParser? createParser$4( - _$jni.JArray<_$jni.jbyte>? data, + jsonparser$_.JsonParser? createParser$4( + jni$_.JArray? data, ) { - final _$data = data?.reference ?? _$jni.jNullReference; + final _$data = data?.reference ?? jni$_.jNullReference; return _createParser$4(reference.pointer, - _id_createParser$4 as _$jni.JMethodIDPtr, _$data.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser$4 as jni$_.JMethodIDPtr, _$data.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$5 = _class.instanceMethodId( @@ -1967,20 +1967,20 @@ class JsonFactory extends _$jni.JObject { r'([BII)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$5 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _createParser$5 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int, int)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(byte[] data, int offset, int len)` /// The returned object must be released after use, by calling the [release] method. @@ -1991,20 +1991,20 @@ class JsonFactory extends _$jni.JObject { ///@param offset Offset of the first data byte within buffer ///@param len Length of contents to parse within buffer ///@since 2.1 - jsonparser_.JsonParser? createParser$5( - _$jni.JArray<_$jni.jbyte>? data, + jsonparser$_.JsonParser? createParser$5( + jni$_.JArray? data, int offset, int len, ) { - final _$data = data?.reference ?? _$jni.jNullReference; + final _$data = data?.reference ?? jni$_.jNullReference; return _createParser$5( reference.pointer, - _id_createParser$5 as _$jni.JMethodIDPtr, + _id_createParser$5 as jni$_.JMethodIDPtr, _$data.pointer, offset, len) - .object( - const jsonparser_.$JsonParser$NullableType()); + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$6 = _class.instanceMethodId( @@ -2012,16 +2012,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$6 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser$6 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(java.lang.String content)` /// The returned object must be released after use, by calling the [release] method. @@ -2029,14 +2029,14 @@ class JsonFactory extends _$jni.JObject { /// Method for constructing parser for parsing /// contents of given String. ///@since 2.1 - jsonparser_.JsonParser? createParser$6( - _$jni.JString? content, + jsonparser$_.JsonParser? createParser$6( + jni$_.JString? content, ) { - final _$content = content?.reference ?? _$jni.jNullReference; + final _$content = content?.reference ?? jni$_.jNullReference; return _createParser$6(reference.pointer, - _id_createParser$6 as _$jni.JMethodIDPtr, _$content.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser$6 as jni$_.JMethodIDPtr, _$content.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$7 = _class.instanceMethodId( @@ -2044,16 +2044,16 @@ class JsonFactory extends _$jni.JObject { r'([C)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$7 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser$7 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(char[] content)` /// The returned object must be released after use, by calling the [release] method. @@ -2061,14 +2061,14 @@ class JsonFactory extends _$jni.JObject { /// Method for constructing parser for parsing /// contents of given char array. ///@since 2.4 - jsonparser_.JsonParser? createParser$7( - _$jni.JArray<_$jni.jchar>? content, + jsonparser$_.JsonParser? createParser$7( + jni$_.JArray? content, ) { - final _$content = content?.reference ?? _$jni.jNullReference; + final _$content = content?.reference ?? jni$_.jNullReference; return _createParser$7(reference.pointer, - _id_createParser$7 as _$jni.JMethodIDPtr, _$content.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser$7 as jni$_.JMethodIDPtr, _$content.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$8 = _class.instanceMethodId( @@ -2076,40 +2076,40 @@ class JsonFactory extends _$jni.JObject { r'([CII)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$8 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _createParser$8 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int, int)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(char[] content, int offset, int len)` /// The returned object must be released after use, by calling the [release] method. /// /// Method for constructing parser for parsing contents of given char array. ///@since 2.4 - jsonparser_.JsonParser? createParser$8( - _$jni.JArray<_$jni.jchar>? content, + jsonparser$_.JsonParser? createParser$8( + jni$_.JArray? content, int offset, int len, ) { - final _$content = content?.reference ?? _$jni.jNullReference; + final _$content = content?.reference ?? jni$_.jNullReference; return _createParser$8( reference.pointer, - _id_createParser$8 as _$jni.JMethodIDPtr, + _id_createParser$8 as jni$_.JMethodIDPtr, _$content.pointer, offset, len) - .object( - const jsonparser_.$JsonParser$NullableType()); + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createParser$9 = _class.instanceMethodId( @@ -2117,16 +2117,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/DataInput;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createParser$9 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createParser$9 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createParser(java.io.DataInput in)` /// The returned object must be released after use, by calling the [release] method. @@ -2137,14 +2137,14 @@ class JsonFactory extends _$jni.JObject { /// If this factory does not support DataInput as source, /// will throw UnsupportedOperationException ///@since 2.8 - jsonparser_.JsonParser? createParser$9( - _$jni.JObject? in$, + jsonparser$_.JsonParser? createParser$9( + jni$_.JObject? in$, ) { - final _$in$ = in$?.reference ?? _$jni.jNullReference; + final _$in$ = in$?.reference ?? jni$_.jNullReference; return _createParser$9(reference.pointer, - _id_createParser$9 as _$jni.JMethodIDPtr, _$in$.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createParser$9 as jni$_.JMethodIDPtr, _$in$.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createNonBlockingByteArrayParser = _class.instanceMethodId( @@ -2153,16 +2153,16 @@ class JsonFactory extends _$jni.JObject { ); static final _createNonBlockingByteArrayParser = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.JsonParser createNonBlockingByteArrayParser()` @@ -2181,11 +2181,11 @@ class JsonFactory extends _$jni.JObject { /// (and US-ASCII since it is proper subset); other encodings are not supported /// at this point. ///@since 2.9 - jsonparser_.JsonParser? createNonBlockingByteArrayParser() { + jsonparser$_.JsonParser? createNonBlockingByteArrayParser() { return _createNonBlockingByteArrayParser(reference.pointer, - _id_createNonBlockingByteArrayParser as _$jni.JMethodIDPtr) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createNonBlockingByteArrayParser as jni$_.JMethodIDPtr) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createGenerator = _class.instanceMethodId( @@ -2193,22 +2193,22 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/OutputStream;Lcom/fasterxml/jackson/core/JsonEncoding;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createGenerator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _createGenerator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createGenerator(java.io.OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc)` /// The returned object must be released after use, by calling the [release] method. @@ -2231,18 +2231,18 @@ class JsonFactory extends _$jni.JObject { ///@param out OutputStream to use for writing JSON content ///@param enc Character encoding to use ///@since 2.1 - _$jni.JObject? createGenerator( - _$jni.JObject? out, - _$jni.JObject? enc, + jni$_.JObject? createGenerator( + jni$_.JObject? out, + jni$_.JObject? enc, ) { - final _$out = out?.reference ?? _$jni.jNullReference; - final _$enc = enc?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; + final _$enc = enc?.reference ?? jni$_.jNullReference; return _createGenerator( reference.pointer, - _id_createGenerator as _$jni.JMethodIDPtr, + _id_createGenerator as jni$_.JMethodIDPtr, _$out.pointer, _$enc.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_createGenerator$1 = _class.instanceMethodId( @@ -2250,16 +2250,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/OutputStream;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createGenerator$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createGenerator$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createGenerator(java.io.OutputStream out)` /// The returned object must be released after use, by calling the [release] method. @@ -2269,13 +2269,13 @@ class JsonFactory extends _$jni.JObject { /// /// Note: there are formats that use fixed encoding (like most binary data formats). ///@since 2.1 - _$jni.JObject? createGenerator$1( - _$jni.JObject? out, + jni$_.JObject? createGenerator$1( + jni$_.JObject? out, ) { - final _$out = out?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; return _createGenerator$1(reference.pointer, - _id_createGenerator$1 as _$jni.JMethodIDPtr, _$out.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_createGenerator$1 as jni$_.JMethodIDPtr, _$out.pointer) + .object(const jni$_.JObjectNullableType()); } static final _id_createGenerator$2 = _class.instanceMethodId( @@ -2283,16 +2283,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/Writer;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createGenerator$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createGenerator$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createGenerator(java.io.Writer w)` /// The returned object must be released after use, by calling the [release] method. @@ -2308,13 +2308,13 @@ class JsonFactory extends _$jni.JObject { /// Using application needs to close it explicitly. ///@since 2.1 ///@param w Writer to use for writing JSON content - _$jni.JObject? createGenerator$2( - _$jni.JObject? w, + jni$_.JObject? createGenerator$2( + jni$_.JObject? w, ) { - final _$w = w?.reference ?? _$jni.jNullReference; + final _$w = w?.reference ?? jni$_.jNullReference; return _createGenerator$2(reference.pointer, - _id_createGenerator$2 as _$jni.JMethodIDPtr, _$w.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_createGenerator$2 as jni$_.JMethodIDPtr, _$w.pointer) + .object(const jni$_.JObjectNullableType()); } static final _id_createGenerator$3 = _class.instanceMethodId( @@ -2322,22 +2322,22 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/File;Lcom/fasterxml/jackson/core/JsonEncoding;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createGenerator$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _createGenerator$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createGenerator(java.io.File f, com.fasterxml.jackson.core.JsonEncoding enc)` /// The returned object must be released after use, by calling the [release] method. @@ -2354,18 +2354,18 @@ class JsonFactory extends _$jni.JObject { ///@param f File to write contents to ///@param enc Character encoding to use ///@since 2.1 - _$jni.JObject? createGenerator$3( - _$jni.JObject? f, - _$jni.JObject? enc, + jni$_.JObject? createGenerator$3( + jni$_.JObject? f, + jni$_.JObject? enc, ) { - final _$f = f?.reference ?? _$jni.jNullReference; - final _$enc = enc?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; + final _$enc = enc?.reference ?? jni$_.jNullReference; return _createGenerator$3( reference.pointer, - _id_createGenerator$3 as _$jni.JMethodIDPtr, + _id_createGenerator$3 as jni$_.JMethodIDPtr, _$f.pointer, _$enc.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_createGenerator$4 = _class.instanceMethodId( @@ -2373,22 +2373,22 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/DataOutput;Lcom/fasterxml/jackson/core/JsonEncoding;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createGenerator$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _createGenerator$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createGenerator(java.io.DataOutput out, com.fasterxml.jackson.core.JsonEncoding enc)` /// The returned object must be released after use, by calling the [release] method. @@ -2396,18 +2396,18 @@ class JsonFactory extends _$jni.JObject { /// Method for constructing generator for writing content using specified /// DataOutput instance. ///@since 2.8 - _$jni.JObject? createGenerator$4( - _$jni.JObject? out, - _$jni.JObject? enc, + jni$_.JObject? createGenerator$4( + jni$_.JObject? out, + jni$_.JObject? enc, ) { - final _$out = out?.reference ?? _$jni.jNullReference; - final _$enc = enc?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; + final _$enc = enc?.reference ?? jni$_.jNullReference; return _createGenerator$4( reference.pointer, - _id_createGenerator$4 as _$jni.JMethodIDPtr, + _id_createGenerator$4 as jni$_.JMethodIDPtr, _$out.pointer, _$enc.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_createGenerator$5 = _class.instanceMethodId( @@ -2415,16 +2415,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/DataOutput;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createGenerator$5 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createGenerator$5 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createGenerator(java.io.DataOutput out)` /// The returned object must be released after use, by calling the [release] method. @@ -2434,13 +2434,13 @@ class JsonFactory extends _$jni.JObject { /// /// Note: there are formats that use fixed encoding (like most binary data formats). ///@since 2.8 - _$jni.JObject? createGenerator$5( - _$jni.JObject? out, + jni$_.JObject? createGenerator$5( + jni$_.JObject? out, ) { - final _$out = out?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; return _createGenerator$5(reference.pointer, - _id_createGenerator$5 as _$jni.JMethodIDPtr, _$out.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_createGenerator$5 as jni$_.JMethodIDPtr, _$out.pointer) + .object(const jni$_.JObjectNullableType()); } static final _id_createJsonParser = _class.instanceMethodId( @@ -2448,16 +2448,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/File;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createJsonParser = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonParser = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createJsonParser(java.io.File f)` /// The returned object must be released after use, by calling the [release] method. @@ -2480,14 +2480,14 @@ class JsonFactory extends _$jni.JObject { ///@throws IOException if parser initialization fails due to I/O (read) problem ///@throws JsonParseException if parser initialization fails due to content decoding problem ///@deprecated Since 2.2, use \#createParser(File) instead. - jsonparser_.JsonParser? createJsonParser( - _$jni.JObject? f, + jsonparser$_.JsonParser? createJsonParser( + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _createJsonParser(reference.pointer, - _id_createJsonParser as _$jni.JMethodIDPtr, _$f.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createJsonParser as jni$_.JMethodIDPtr, _$f.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createJsonParser$1 = _class.instanceMethodId( @@ -2495,16 +2495,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/net/URL;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createJsonParser$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonParser$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createJsonParser(java.net.URL url)` /// The returned object must be released after use, by calling the [release] method. @@ -2526,14 +2526,14 @@ class JsonFactory extends _$jni.JObject { ///@throws IOException if parser initialization fails due to I/O (read) problem ///@throws JsonParseException if parser initialization fails due to content decoding problem ///@deprecated Since 2.2, use \#createParser(URL) instead. - jsonparser_.JsonParser? createJsonParser$1( - _$jni.JObject? url, + jsonparser$_.JsonParser? createJsonParser$1( + jni$_.JObject? url, ) { - final _$url = url?.reference ?? _$jni.jNullReference; + final _$url = url?.reference ?? jni$_.jNullReference; return _createJsonParser$1(reference.pointer, - _id_createJsonParser$1 as _$jni.JMethodIDPtr, _$url.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createJsonParser$1 as jni$_.JMethodIDPtr, _$url.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createJsonParser$2 = _class.instanceMethodId( @@ -2541,16 +2541,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/InputStream;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createJsonParser$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonParser$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createJsonParser(java.io.InputStream in)` /// The returned object must be released after use, by calling the [release] method. @@ -2575,14 +2575,14 @@ class JsonFactory extends _$jni.JObject { ///@throws IOException if parser initialization fails due to I/O (read) problem ///@throws JsonParseException if parser initialization fails due to content decoding problem ///@deprecated Since 2.2, use \#createParser(InputStream) instead. - jsonparser_.JsonParser? createJsonParser$2( - _$jni.JObject? in$, + jsonparser$_.JsonParser? createJsonParser$2( + jni$_.JObject? in$, ) { - final _$in$ = in$?.reference ?? _$jni.jNullReference; + final _$in$ = in$?.reference ?? jni$_.jNullReference; return _createJsonParser$2(reference.pointer, - _id_createJsonParser$2 as _$jni.JMethodIDPtr, _$in$.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createJsonParser$2 as jni$_.JMethodIDPtr, _$in$.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createJsonParser$3 = _class.instanceMethodId( @@ -2590,16 +2590,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/Reader;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createJsonParser$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonParser$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createJsonParser(java.io.Reader r)` /// The returned object must be released after use, by calling the [release] method. @@ -2617,14 +2617,14 @@ class JsonFactory extends _$jni.JObject { ///@throws IOException if parser initialization fails due to I/O (read) problem ///@throws JsonParseException if parser initialization fails due to content decoding problem ///@deprecated Since 2.2, use \#createParser(Reader) instead. - jsonparser_.JsonParser? createJsonParser$3( - _$jni.JObject? r, + jsonparser$_.JsonParser? createJsonParser$3( + jni$_.JObject? r, ) { - final _$r = r?.reference ?? _$jni.jNullReference; + final _$r = r?.reference ?? jni$_.jNullReference; return _createJsonParser$3(reference.pointer, - _id_createJsonParser$3 as _$jni.JMethodIDPtr, _$r.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createJsonParser$3 as jni$_.JMethodIDPtr, _$r.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createJsonParser$4 = _class.instanceMethodId( @@ -2632,16 +2632,16 @@ class JsonFactory extends _$jni.JObject { r'([B)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createJsonParser$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonParser$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createJsonParser(byte[] data)` /// The returned object must be released after use, by calling the [release] method. @@ -2652,14 +2652,14 @@ class JsonFactory extends _$jni.JObject { ///@throws IOException if parser initialization fails due to I/O (read) problem ///@throws JsonParseException if parser initialization fails due to content decoding problem ///@deprecated Since 2.2, use \#createParser(byte[]) instead. - jsonparser_.JsonParser? createJsonParser$4( - _$jni.JArray<_$jni.jbyte>? data, + jsonparser$_.JsonParser? createJsonParser$4( + jni$_.JArray? data, ) { - final _$data = data?.reference ?? _$jni.jNullReference; + final _$data = data?.reference ?? jni$_.jNullReference; return _createJsonParser$4(reference.pointer, - _id_createJsonParser$4 as _$jni.JMethodIDPtr, _$data.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createJsonParser$4 as jni$_.JMethodIDPtr, _$data.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createJsonParser$5 = _class.instanceMethodId( @@ -2667,20 +2667,20 @@ class JsonFactory extends _$jni.JObject { r'([BII)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createJsonParser$5 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _createJsonParser$5 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int, int)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createJsonParser(byte[] data, int offset, int len)` /// The returned object must be released after use, by calling the [release] method. @@ -2694,20 +2694,20 @@ class JsonFactory extends _$jni.JObject { ///@throws IOException if parser initialization fails due to I/O (read) problem ///@throws JsonParseException if parser initialization fails due to content decoding problem ///@deprecated Since 2.2, use \#createParser(byte[],int,int) instead. - jsonparser_.JsonParser? createJsonParser$5( - _$jni.JArray<_$jni.jbyte>? data, + jsonparser$_.JsonParser? createJsonParser$5( + jni$_.JArray? data, int offset, int len, ) { - final _$data = data?.reference ?? _$jni.jNullReference; + final _$data = data?.reference ?? jni$_.jNullReference; return _createJsonParser$5( reference.pointer, - _id_createJsonParser$5 as _$jni.JMethodIDPtr, + _id_createJsonParser$5 as jni$_.JMethodIDPtr, _$data.pointer, offset, len) - .object( - const jsonparser_.$JsonParser$NullableType()); + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createJsonParser$6 = _class.instanceMethodId( @@ -2715,16 +2715,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _createJsonParser$6 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonParser$6 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser createJsonParser(java.lang.String content)` /// The returned object must be released after use, by calling the [release] method. @@ -2736,14 +2736,14 @@ class JsonFactory extends _$jni.JObject { ///@throws IOException if parser initialization fails due to I/O (read) problem ///@throws JsonParseException if parser initialization fails due to content decoding problem ///@deprecated Since 2.2, use \#createParser(String) instead. - jsonparser_.JsonParser? createJsonParser$6( - _$jni.JString? content, + jsonparser$_.JsonParser? createJsonParser$6( + jni$_.JString? content, ) { - final _$content = content?.reference ?? _$jni.jNullReference; + final _$content = content?.reference ?? jni$_.jNullReference; return _createJsonParser$6(reference.pointer, - _id_createJsonParser$6 as _$jni.JMethodIDPtr, _$content.pointer) - .object( - const jsonparser_.$JsonParser$NullableType()); + _id_createJsonParser$6 as jni$_.JMethodIDPtr, _$content.pointer) + .object( + const jsonparser$_.$JsonParser$NullableType()); } static final _id_createJsonGenerator = _class.instanceMethodId( @@ -2751,22 +2751,22 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/OutputStream;Lcom/fasterxml/jackson/core/JsonEncoding;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createJsonGenerator = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _createJsonGenerator = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createJsonGenerator(java.io.OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc)` /// The returned object must be released after use, by calling the [release] method. @@ -2791,18 +2791,18 @@ class JsonFactory extends _$jni.JObject { ///@return Generator constructed ///@throws IOException if parser initialization fails due to I/O (write) problem ///@deprecated Since 2.2, use \#createGenerator(OutputStream, JsonEncoding) instead. - _$jni.JObject? createJsonGenerator( - _$jni.JObject? out, - _$jni.JObject? enc, + jni$_.JObject? createJsonGenerator( + jni$_.JObject? out, + jni$_.JObject? enc, ) { - final _$out = out?.reference ?? _$jni.jNullReference; - final _$enc = enc?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; + final _$enc = enc?.reference ?? jni$_.jNullReference; return _createJsonGenerator( reference.pointer, - _id_createJsonGenerator as _$jni.JMethodIDPtr, + _id_createJsonGenerator as jni$_.JMethodIDPtr, _$out.pointer, _$enc.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } static final _id_createJsonGenerator$1 = _class.instanceMethodId( @@ -2810,16 +2810,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/Writer;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createJsonGenerator$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonGenerator$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createJsonGenerator(java.io.Writer out)` /// The returned object must be released after use, by calling the [release] method. @@ -2837,13 +2837,13 @@ class JsonFactory extends _$jni.JObject { ///@return Generator constructed ///@throws IOException if parser initialization fails due to I/O (write) problem ///@deprecated Since 2.2, use \#createGenerator(Writer) instead. - _$jni.JObject? createJsonGenerator$1( - _$jni.JObject? out, + jni$_.JObject? createJsonGenerator$1( + jni$_.JObject? out, ) { - final _$out = out?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; return _createJsonGenerator$1(reference.pointer, - _id_createJsonGenerator$1 as _$jni.JMethodIDPtr, _$out.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_createJsonGenerator$1 as jni$_.JMethodIDPtr, _$out.pointer) + .object(const jni$_.JObjectNullableType()); } static final _id_createJsonGenerator$2 = _class.instanceMethodId( @@ -2851,16 +2851,16 @@ class JsonFactory extends _$jni.JObject { r'(Ljava/io/OutputStream;)Lcom/fasterxml/jackson/core/JsonGenerator;', ); - static final _createJsonGenerator$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _createJsonGenerator$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonGenerator createJsonGenerator(java.io.OutputStream out)` /// The returned object must be released after use, by calling the [release] method. @@ -2873,13 +2873,13 @@ class JsonFactory extends _$jni.JObject { ///@return Generator constructed ///@throws IOException if parser initialization fails due to I/O (write) problem ///@deprecated Since 2.2, use \#createGenerator(OutputStream) instead. - _$jni.JObject? createJsonGenerator$2( - _$jni.JObject? out, + jni$_.JObject? createJsonGenerator$2( + jni$_.JObject? out, ) { - final _$out = out?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; return _createJsonGenerator$2(reference.pointer, - _id_createJsonGenerator$2 as _$jni.JMethodIDPtr, _$out.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_createJsonGenerator$2 as jni$_.JMethodIDPtr, _$out.pointer) + .object(const jni$_.JObjectNullableType()); } static final _id_$_getBufferRecycler = _class.instanceMethodId( @@ -2887,16 +2887,16 @@ class JsonFactory extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/util/BufferRecycler;', ); - static final _$_getBufferRecycler = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _$_getBufferRecycler = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.util.BufferRecycler _getBufferRecycler()` @@ -2907,81 +2907,81 @@ class JsonFactory extends _$jni.JObject { /// /// Note: only public to give access for {@code ObjectMapper} ///@return Buffer recycler instance to use - _$jni.JObject? $_getBufferRecycler() { + jni$_.JObject? $_getBufferRecycler() { return _$_getBufferRecycler( - reference.pointer, _id_$_getBufferRecycler as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_$_getBufferRecycler as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } } -final class $JsonFactory$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $JsonFactory$NullableType extends jni$_.JObjType { + @jni$_.internal const $JsonFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonFactory;'; - @_$jni.internal - @_$core.override - JsonFactory? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + JsonFactory? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonFactory.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonFactory$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonFactory$NullableType) && other is $JsonFactory$NullableType; } } -final class $JsonFactory$Type extends _$jni.JObjType { - @_$jni.internal +final class $JsonFactory$Type extends jni$_.JObjType { + @jni$_.internal const $JsonFactory$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonFactory;'; - @_$jni.internal - @_$core.override - JsonFactory fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonFactory fromReference(jni$_.JReference reference) => JsonFactory.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonFactory$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonFactory$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonFactory$Type) && other is $JsonFactory$Type; diff --git a/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonParser.dart b/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonParser.dart index 9b6ad37ff..cedb7cc97 100644 --- a/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonParser.dart +++ b/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonParser.dart @@ -47,29 +47,29 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; -import 'JsonToken.dart' as jsontoken_; +import 'JsonToken.dart' as jsontoken$_; /// from: `com.fasterxml.jackson.core.JsonParser$Feature` /// /// Enumeration that defines all on/off features for parsers. -class JsonParser_Feature extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonParser_Feature extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonParser_Feature.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/fasterxml/jackson/core/JsonParser$Feature'); + jni$_.JClass.forName(r'com/fasterxml/jackson/core/JsonParser$Feature'); /// The type which includes information such as the signature of this class. static const nullableType = $JsonParser_Feature$NullableType(); @@ -79,24 +79,24 @@ class JsonParser_Feature extends _$jni.JObject { r'()[Lcom/fasterxml/jackson/core/JsonParser$Feature;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.fasterxml.jackson.core.JsonParser.Feature[] values()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray? values() { - return _values(_class.reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JArray?>( - const _$jni.JArrayNullableType( + static jni$_.JArray? values() { + return _values(_class.reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( $JsonParser_Feature$NullableType())); } @@ -105,24 +105,24 @@ class JsonParser_Feature extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonParser$Feature;', ); - static final _valueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _valueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.fasterxml.jackson.core.JsonParser.Feature valueOf(java.lang.String name)` /// The returned object must be released after use, by calling the [release] method. static JsonParser_Feature? valueOf( - _$jni.JString? name, + jni$_.JString? name, ) { - final _$name = name?.reference ?? _$jni.jNullReference; - return _valueOf(_class.reference.pointer, _id_valueOf as _$jni.JMethodIDPtr, + final _$name = name?.reference ?? jni$_.jNullReference; + return _valueOf(_class.reference.pointer, _id_valueOf as jni$_.JMethodIDPtr, _$name.pointer) .object(const $JsonParser_Feature$NullableType()); } @@ -132,16 +132,16 @@ class JsonParser_Feature extends _$jni.JObject { r'()I', ); - static final _collectDefaults = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _collectDefaults = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public int collectDefaults()` @@ -151,7 +151,7 @@ class JsonParser_Feature extends _$jni.JObject { ///@return Bit mask of all features that are enabled by default static int collectDefaults() { return _collectDefaults( - _class.reference.pointer, _id_collectDefaults as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_collectDefaults as jni$_.JMethodIDPtr) .integer; } @@ -160,22 +160,22 @@ class JsonParser_Feature extends _$jni.JObject { r'()Z', ); - static final _enabledByDefault = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _enabledByDefault = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean enabledByDefault()` bool enabledByDefault() { return _enabledByDefault( - reference.pointer, _id_enabledByDefault as _$jni.JMethodIDPtr) + reference.pointer, _id_enabledByDefault as jni$_.JMethodIDPtr) .boolean; } @@ -184,23 +184,23 @@ class JsonParser_Feature extends _$jni.JObject { r'(I)Z', ); - static final _enabledIn = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallBooleanMethod') + static final _enabledIn = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public boolean enabledIn(int flags)` bool enabledIn( int flags, ) { return _enabledIn( - reference.pointer, _id_enabledIn as _$jni.JMethodIDPtr, flags) + reference.pointer, _id_enabledIn as jni$_.JMethodIDPtr, flags) .boolean; } @@ -209,58 +209,58 @@ class JsonParser_Feature extends _$jni.JObject { r'()I', ); - static final _getMask = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getMask = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getMask()` int getMask() { - return _getMask(reference.pointer, _id_getMask as _$jni.JMethodIDPtr) + return _getMask(reference.pointer, _id_getMask as jni$_.JMethodIDPtr) .integer; } } final class $JsonParser_Feature$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonParser_Feature$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonParser$Feature;'; - @_$jni.internal - @_$core.override - JsonParser_Feature? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonParser_Feature? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonParser_Feature.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonParser_Feature$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonParser_Feature$NullableType) && other is $JsonParser_Feature$NullableType; @@ -268,37 +268,37 @@ final class $JsonParser_Feature$NullableType } final class $JsonParser_Feature$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonParser_Feature$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonParser$Feature;'; - @_$jni.internal - @_$core.override - JsonParser_Feature fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonParser_Feature fromReference(jni$_.JReference reference) => JsonParser_Feature.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonParser_Feature$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonParser_Feature$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonParser_Feature$Type) && other is $JsonParser_Feature$Type; @@ -309,19 +309,19 @@ final class $JsonParser_Feature$Type /// /// Enumeration of possible "native" (optimal) types that can be /// used for numbers. -class JsonParser_NumberType extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonParser_NumberType extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonParser_NumberType.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/fasterxml/jackson/core/JsonParser$NumberType'); + jni$_.JClass.forName(r'com/fasterxml/jackson/core/JsonParser$NumberType'); /// The type which includes information such as the signature of this class. static const nullableType = $JsonParser_NumberType$NullableType(); @@ -331,24 +331,24 @@ class JsonParser_NumberType extends _$jni.JObject { r'()[Lcom/fasterxml/jackson/core/JsonParser$NumberType;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.fasterxml.jackson.core.JsonParser.NumberType[] values()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray? values() { - return _values(_class.reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JArray?>( - const _$jni.JArrayNullableType( + static jni$_.JArray? values() { + return _values(_class.reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( $JsonParser_NumberType$NullableType())); } @@ -357,24 +357,24 @@ class JsonParser_NumberType extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonParser$NumberType;', ); - static final _valueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _valueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.fasterxml.jackson.core.JsonParser.NumberType valueOf(java.lang.String name)` /// The returned object must be released after use, by calling the [release] method. static JsonParser_NumberType? valueOf( - _$jni.JString? name, + jni$_.JString? name, ) { - final _$name = name?.reference ?? _$jni.jNullReference; - return _valueOf(_class.reference.pointer, _id_valueOf as _$jni.JMethodIDPtr, + final _$name = name?.reference ?? jni$_.jNullReference; + return _valueOf(_class.reference.pointer, _id_valueOf as jni$_.JMethodIDPtr, _$name.pointer) .object( const $JsonParser_NumberType$NullableType()); @@ -382,38 +382,38 @@ class JsonParser_NumberType extends _$jni.JObject { } final class $JsonParser_NumberType$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonParser_NumberType$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonParser$NumberType;'; - @_$jni.internal - @_$core.override - JsonParser_NumberType? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonParser_NumberType? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonParser_NumberType.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonParser_NumberType$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonParser_NumberType$NullableType) && other is $JsonParser_NumberType$NullableType; @@ -421,37 +421,37 @@ final class $JsonParser_NumberType$NullableType } final class $JsonParser_NumberType$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonParser_NumberType$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonParser$NumberType;'; - @_$jni.internal - @_$core.override - JsonParser_NumberType fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonParser_NumberType fromReference(jni$_.JReference reference) => JsonParser_NumberType.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonParser_NumberType$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonParser_NumberType$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonParser_NumberType$Type) && other is $JsonParser_NumberType$Type; @@ -464,19 +464,19 @@ final class $JsonParser_NumberType$Type /// Instances are created using factory methods of /// a JsonFactory instance. ///@author Tatu Saloranta -class JsonParser extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonParser extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonParser.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/fasterxml/jackson/core/JsonParser'); + jni$_.JClass.forName(r'com/fasterxml/jackson/core/JsonParser'); /// The type which includes information such as the signature of this class. static const nullableType = $JsonParser$NullableType(); @@ -486,16 +486,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/ObjectCodec;', ); - static final _getCodec = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCodec = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.ObjectCodec getCodec()` @@ -505,9 +505,9 @@ class JsonParser extends _$jni.JObject { /// parser, if any. Codec is used by \#readValueAs(Class) /// method (and its variants). ///@return Codec assigned to this parser, if any; {@code null} if none - _$jni.JObject? getCodec() { - return _getCodec(reference.pointer, _id_getCodec as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? getCodec() { + return _getCodec(reference.pointer, _id_getCodec as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setCodec = _class.instanceMethodId( @@ -515,16 +515,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/ObjectCodec;)V', ); - static final _setCodec = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setCodec = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract void setCodec(com.fasterxml.jackson.core.ObjectCodec oc)` /// @@ -533,11 +533,11 @@ class JsonParser extends _$jni.JObject { /// method (and its variants). ///@param oc Codec to assign, if any; {@code null} if none void setCodec( - _$jni.JObject? oc, + jni$_.JObject? oc, ) { - final _$oc = oc?.reference ?? _$jni.jNullReference; + final _$oc = oc?.reference ?? jni$_.jNullReference; _setCodec( - reference.pointer, _id_setCodec as _$jni.JMethodIDPtr, _$oc.pointer) + reference.pointer, _id_setCodec as jni$_.JMethodIDPtr, _$oc.pointer) .check(); } @@ -546,16 +546,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _getInputSource = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getInputSource = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object getInputSource()` @@ -575,10 +575,10 @@ class JsonParser extends _$jni.JObject { /// In general use of this accessor should be considered as /// "last effort", i.e. only used if no other mechanism is applicable. ///@return Input source this parser was configured with - _$jni.JObject? getInputSource() { + jni$_.JObject? getInputSource() { return _getInputSource( - reference.pointer, _id_getInputSource as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getInputSource as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setRequestPayloadOnError = _class.instanceMethodId( @@ -586,16 +586,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/util/RequestPayload;)V', ); - static final _setRequestPayloadOnError = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setRequestPayloadOnError = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setRequestPayloadOnError(com.fasterxml.jackson.core.util.RequestPayload payload)` /// @@ -603,12 +603,12 @@ class JsonParser extends _$jni.JObject { ///@param payload Payload to pass ///@since 2.8 void setRequestPayloadOnError( - _$jni.JObject? payload, + jni$_.JObject? payload, ) { - final _$payload = payload?.reference ?? _$jni.jNullReference; + final _$payload = payload?.reference ?? jni$_.jNullReference; _setRequestPayloadOnError( reference.pointer, - _id_setRequestPayloadOnError as _$jni.JMethodIDPtr, + _id_setRequestPayloadOnError as jni$_.JMethodIDPtr, _$payload.pointer) .check(); } @@ -619,22 +619,22 @@ class JsonParser extends _$jni.JObject { ); static final _setRequestPayloadOnError$1 = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void setRequestPayloadOnError(byte[] payload, java.lang.String charset)` /// @@ -643,14 +643,14 @@ class JsonParser extends _$jni.JObject { ///@param charset Character encoding for (lazily) decoding payload ///@since 2.8 void setRequestPayloadOnError$1( - _$jni.JArray<_$jni.jbyte>? payload, - _$jni.JString? charset, + jni$_.JArray? payload, + jni$_.JString? charset, ) { - final _$payload = payload?.reference ?? _$jni.jNullReference; - final _$charset = charset?.reference ?? _$jni.jNullReference; + final _$payload = payload?.reference ?? jni$_.jNullReference; + final _$charset = charset?.reference ?? jni$_.jNullReference; _setRequestPayloadOnError$1( reference.pointer, - _id_setRequestPayloadOnError$1 as _$jni.JMethodIDPtr, + _id_setRequestPayloadOnError$1 as jni$_.JMethodIDPtr, _$payload.pointer, _$charset.pointer) .check(); @@ -662,16 +662,16 @@ class JsonParser extends _$jni.JObject { ); static final _setRequestPayloadOnError$2 = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setRequestPayloadOnError(java.lang.String payload)` /// @@ -679,12 +679,12 @@ class JsonParser extends _$jni.JObject { ///@param payload Payload to pass ///@since 2.8 void setRequestPayloadOnError$2( - _$jni.JString? payload, + jni$_.JString? payload, ) { - final _$payload = payload?.reference ?? _$jni.jNullReference; + final _$payload = payload?.reference ?? jni$_.jNullReference; _setRequestPayloadOnError$2( reference.pointer, - _id_setRequestPayloadOnError$2 as _$jni.JMethodIDPtr, + _id_setRequestPayloadOnError$2 as jni$_.JMethodIDPtr, _$payload.pointer) .check(); } @@ -694,16 +694,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/FormatSchema;)V', ); - static final _setSchema = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setSchema = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)` /// @@ -718,10 +718,10 @@ class JsonParser extends _$jni.JObject { ///@param schema Schema to use ///@throws UnsupportedOperationException if parser does not support schema void setSchema( - _$jni.JObject? schema, + jni$_.JObject? schema, ) { - final _$schema = schema?.reference ?? _$jni.jNullReference; - _setSchema(reference.pointer, _id_setSchema as _$jni.JMethodIDPtr, + final _$schema = schema?.reference ?? jni$_.jNullReference; + _setSchema(reference.pointer, _id_setSchema as jni$_.JMethodIDPtr, _$schema.pointer) .check(); } @@ -731,16 +731,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/FormatSchema;', ); - static final _getSchema = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSchema = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.FormatSchema getSchema()` @@ -750,9 +750,9 @@ class JsonParser extends _$jni.JObject { /// Default implementation returns null. ///@return Schema in use by this parser, if any; {@code null} if none ///@since 2.1 - _$jni.JObject? getSchema() { - return _getSchema(reference.pointer, _id_getSchema as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? getSchema() { + return _getSchema(reference.pointer, _id_getSchema as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_canUseSchema = _class.instanceMethodId( @@ -760,16 +760,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/FormatSchema;)Z', ); - static final _canUseSchema = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _canUseSchema = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)` /// @@ -778,11 +778,11 @@ class JsonParser extends _$jni.JObject { ///@param schema Schema to check ///@return True if this parser can use given schema; false if not bool canUseSchema( - _$jni.JObject? schema, + jni$_.JObject? schema, ) { - final _$schema = schema?.reference ?? _$jni.jNullReference; + final _$schema = schema?.reference ?? jni$_.jNullReference; return _canUseSchema(reference.pointer, - _id_canUseSchema as _$jni.JMethodIDPtr, _$schema.pointer) + _id_canUseSchema as jni$_.JMethodIDPtr, _$schema.pointer) .boolean; } @@ -791,16 +791,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _requiresCustomCodec = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _requiresCustomCodec = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean requiresCustomCodec()` @@ -815,7 +815,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.1 bool requiresCustomCodec() { return _requiresCustomCodec( - reference.pointer, _id_requiresCustomCodec as _$jni.JMethodIDPtr) + reference.pointer, _id_requiresCustomCodec as jni$_.JMethodIDPtr) .boolean; } @@ -824,16 +824,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _canParseAsync = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _canParseAsync = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean canParseAsync()` @@ -851,7 +851,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.9 bool canParseAsync() { return _canParseAsync( - reference.pointer, _id_canParseAsync as _$jni.JMethodIDPtr) + reference.pointer, _id_canParseAsync as jni$_.JMethodIDPtr) .boolean; } @@ -860,16 +860,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/async/NonBlockingInputFeeder;', ); - static final _getNonBlockingInputFeeder = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNonBlockingInputFeeder = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.async.NonBlockingInputFeeder getNonBlockingInputFeeder()` @@ -880,10 +880,10 @@ class JsonParser extends _$jni.JObject { /// parsers that use blocking I/O. ///@return Input feeder to use with non-blocking (async) parsing ///@since 2.9 - _$jni.JObject? getNonBlockingInputFeeder() { + jni$_.JObject? getNonBlockingInputFeeder() { return _getNonBlockingInputFeeder(reference.pointer, - _id_getNonBlockingInputFeeder as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_getNonBlockingInputFeeder as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getReadCapabilities = _class.instanceMethodId( @@ -891,16 +891,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/util/JacksonFeatureSet;', ); - static final _getReadCapabilities = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getReadCapabilities = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.util.JacksonFeatureSet getReadCapabilities()` @@ -910,10 +910,10 @@ class JsonParser extends _$jni.JObject { /// underlying data format being read (directly or indirectly). ///@return Set of read capabilities for content to read via this parser ///@since 2.12 - _$jni.JObject? getReadCapabilities() { + jni$_.JObject? getReadCapabilities() { return _getReadCapabilities( - reference.pointer, _id_getReadCapabilities as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getReadCapabilities as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_version = _class.instanceMethodId( @@ -921,16 +921,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/Version;', ); - static final _version = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _version = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.Version version()` @@ -940,9 +940,9 @@ class JsonParser extends _$jni.JObject { /// Left for sub-classes to implement. ///@return Version of this generator (derived from version declared for /// {@code jackson-core} jar that contains the class - _$jni.JObject? version() { - return _version(reference.pointer, _id_version as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? version() { + return _version(reference.pointer, _id_version as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_close = _class.instanceMethodId( @@ -950,16 +950,16 @@ class JsonParser extends _$jni.JObject { r'()V', ); - static final _close = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _close = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract void close()` @@ -979,7 +979,7 @@ class JsonParser extends _$jni.JObject { /// stream or reader it does own them. ///@throws IOException if there is either an underlying I/O problem void close() { - _close(reference.pointer, _id_close as _$jni.JMethodIDPtr).check(); + _close(reference.pointer, _id_close as jni$_.JMethodIDPtr).check(); } static final _id_isClosed = _class.instanceMethodId( @@ -987,16 +987,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _isClosed = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isClosed = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract boolean isClosed()` @@ -1009,7 +1009,7 @@ class JsonParser extends _$jni.JObject { /// end of input. ///@return {@code True} if this parser instance has been closed bool isClosed() { - return _isClosed(reference.pointer, _id_isClosed as _$jni.JMethodIDPtr) + return _isClosed(reference.pointer, _id_isClosed as jni$_.JMethodIDPtr) .boolean; } @@ -1018,16 +1018,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonStreamContext;', ); - static final _getParsingContext = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getParsingContext = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonStreamContext getParsingContext()` @@ -1042,10 +1042,10 @@ class JsonParser extends _$jni.JObject { /// Contexts can also be used for simple xpath-like matching of /// input, if so desired. ///@return Stream input context (JsonStreamContext) associated with this parser - _$jni.JObject? getParsingContext() { + jni$_.JObject? getParsingContext() { return _getParsingContext( - reference.pointer, _id_getParsingContext as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getParsingContext as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_currentLocation = _class.instanceMethodId( @@ -1053,16 +1053,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonLocation;', ); - static final _currentLocation = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _currentLocation = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.JsonLocation currentLocation()` @@ -1080,10 +1080,10 @@ class JsonParser extends _$jni.JObject { /// to other library) ///@return Location of the last processed input unit (byte or character) ///@since 2.13 - _$jni.JObject? currentLocation() { + jni$_.JObject? currentLocation() { return _currentLocation( - reference.pointer, _id_currentLocation as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_currentLocation as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_currentTokenLocation = _class.instanceMethodId( @@ -1091,16 +1091,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonLocation;', ); - static final _currentTokenLocation = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _currentTokenLocation = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.JsonLocation currentTokenLocation()` @@ -1118,10 +1118,10 @@ class JsonParser extends _$jni.JObject { /// to other library) ///@return Starting location of the token parser currently points to ///@since 2.13 (will eventually replace \#getTokenLocation) - _$jni.JObject? currentTokenLocation() { + jni$_.JObject? currentTokenLocation() { return _currentTokenLocation( - reference.pointer, _id_currentTokenLocation as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_currentTokenLocation as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getCurrentLocation = _class.instanceMethodId( @@ -1129,16 +1129,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonLocation;', ); - static final _getCurrentLocation = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCurrentLocation = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonLocation getCurrentLocation()` @@ -1147,10 +1147,10 @@ class JsonParser extends _$jni.JObject { /// Alias for \#currentLocation(), to be deprecated in later /// Jackson 2.x versions (and removed from Jackson 3.0). ///@return Location of the last processed input unit (byte or character) - _$jni.JObject? getCurrentLocation() { + jni$_.JObject? getCurrentLocation() { return _getCurrentLocation( - reference.pointer, _id_getCurrentLocation as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getCurrentLocation as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getTokenLocation = _class.instanceMethodId( @@ -1158,16 +1158,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonLocation;', ); - static final _getTokenLocation = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getTokenLocation = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonLocation getTokenLocation()` @@ -1176,10 +1176,10 @@ class JsonParser extends _$jni.JObject { /// Alias for \#currentTokenLocation(), to be deprecated in later /// Jackson 2.x versions (and removed from Jackson 3.0). ///@return Starting location of the token parser currently points to - _$jni.JObject? getTokenLocation() { + jni$_.JObject? getTokenLocation() { return _getTokenLocation( - reference.pointer, _id_getTokenLocation as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getTokenLocation as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_currentValue = _class.instanceMethodId( @@ -1187,16 +1187,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _currentValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _currentValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object currentValue()` @@ -1213,10 +1213,10 @@ class JsonParser extends _$jni.JObject { /// and gets passed through data-binding. ///@return "Current value" associated with the current input context (state) of this parser ///@since 2.13 (added as replacement for older \#getCurrentValue() - _$jni.JObject? currentValue() { + jni$_.JObject? currentValue() { return _currentValue( - reference.pointer, _id_currentValue as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_currentValue as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_assignCurrentValue = _class.instanceMethodId( @@ -1224,16 +1224,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/lang/Object;)V', ); - static final _assignCurrentValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _assignCurrentValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void assignCurrentValue(java.lang.Object v)` /// @@ -1244,11 +1244,11 @@ class JsonParser extends _$jni.JObject { ///@param v Current value to assign for the current input context of this parser ///@since 2.13 (added as replacement for older \#setCurrentValue void assignCurrentValue( - _$jni.JObject? v, + jni$_.JObject? v, ) { - final _$v = v?.reference ?? _$jni.jNullReference; + final _$v = v?.reference ?? jni$_.jNullReference; _assignCurrentValue(reference.pointer, - _id_assignCurrentValue as _$jni.JMethodIDPtr, _$v.pointer) + _id_assignCurrentValue as jni$_.JMethodIDPtr, _$v.pointer) .check(); } @@ -1257,16 +1257,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _getCurrentValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCurrentValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object getCurrentValue()` @@ -1275,10 +1275,10 @@ class JsonParser extends _$jni.JObject { /// Alias for \#currentValue(), to be deprecated in later /// Jackson 2.x versions (and removed from Jackson 3.0). ///@return Location of the last processed input unit (byte or character) - _$jni.JObject? getCurrentValue() { + jni$_.JObject? getCurrentValue() { return _getCurrentValue( - reference.pointer, _id_getCurrentValue as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getCurrentValue as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setCurrentValue = _class.instanceMethodId( @@ -1286,16 +1286,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/lang/Object;)V', ); - static final _setCurrentValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setCurrentValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setCurrentValue(java.lang.Object v)` /// @@ -1303,11 +1303,11 @@ class JsonParser extends _$jni.JObject { /// Jackson 2.x versions (and removed from Jackson 3.0). ///@param v Current value to assign for the current input context of this parser void setCurrentValue( - _$jni.JObject? v, + jni$_.JObject? v, ) { - final _$v = v?.reference ?? _$jni.jNullReference; + final _$v = v?.reference ?? jni$_.jNullReference; _setCurrentValue(reference.pointer, - _id_setCurrentValue as _$jni.JMethodIDPtr, _$v.pointer) + _id_setCurrentValue as jni$_.JMethodIDPtr, _$v.pointer) .check(); } @@ -1316,16 +1316,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/io/OutputStream;)I', ); - static final _releaseBuffered = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _releaseBuffered = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public int releaseBuffered(java.io.OutputStream out)` /// @@ -1341,11 +1341,11 @@ class JsonParser extends _$jni.JObject { /// otherwise number of bytes released (0 if there was nothing to release) ///@throws IOException if write to stream threw exception int releaseBuffered( - _$jni.JObject? out, + jni$_.JObject? out, ) { - final _$out = out?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; return _releaseBuffered(reference.pointer, - _id_releaseBuffered as _$jni.JMethodIDPtr, _$out.pointer) + _id_releaseBuffered as jni$_.JMethodIDPtr, _$out.pointer) .integer; } @@ -1354,16 +1354,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/io/Writer;)I', ); - static final _releaseBuffered$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _releaseBuffered$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public int releaseBuffered(java.io.Writer w)` /// @@ -1380,11 +1380,11 @@ class JsonParser extends _$jni.JObject { /// otherwise number of chars released (0 if there was nothing to release) ///@throws IOException if write using Writer threw exception int releaseBuffered$1( - _$jni.JObject? w, + jni$_.JObject? w, ) { - final _$w = w?.reference ?? _$jni.jNullReference; + final _$w = w?.reference ?? jni$_.jNullReference; return _releaseBuffered$1(reference.pointer, - _id_releaseBuffered$1 as _$jni.JMethodIDPtr, _$w.pointer) + _id_releaseBuffered$1 as jni$_.JMethodIDPtr, _$w.pointer) .integer; } @@ -1393,16 +1393,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _enable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _enable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser enable(com.fasterxml.jackson.core.JsonParser.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -1414,9 +1414,9 @@ class JsonParser extends _$jni.JObject { JsonParser? enable( JsonParser_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _enable( - reference.pointer, _id_enable as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_enable as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonParser$NullableType()); } @@ -1425,16 +1425,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _disable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _disable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.fasterxml.jackson.core.JsonParser disable(com.fasterxml.jackson.core.JsonParser.Feature f)` /// The returned object must be released after use, by calling the [release] method. @@ -1446,9 +1446,9 @@ class JsonParser extends _$jni.JObject { JsonParser? disable( JsonParser_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _disable( - reference.pointer, _id_disable as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_disable as jni$_.JMethodIDPtr, _$f.pointer) .object(const $JsonParser$NullableType()); } @@ -1457,17 +1457,17 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;Z)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _configure = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _configure = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public com.fasterxml.jackson.core.JsonParser configure(com.fasterxml.jackson.core.JsonParser.Feature f, boolean state)` /// The returned object must be released after use, by calling the [release] method. @@ -1481,8 +1481,8 @@ class JsonParser extends _$jni.JObject { JsonParser_Feature? f, bool state, ) { - final _$f = f?.reference ?? _$jni.jNullReference; - return _configure(reference.pointer, _id_configure as _$jni.JMethodIDPtr, + final _$f = f?.reference ?? jni$_.jNullReference; + return _configure(reference.pointer, _id_configure as jni$_.JMethodIDPtr, _$f.pointer, state ? 1 : 0) .object(const $JsonParser$NullableType()); } @@ -1492,16 +1492,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonParser$Feature;)Z', ); - static final _isEnabled = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _isEnabled = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean isEnabled(com.fasterxml.jackson.core.JsonParser.Feature f)` /// @@ -1511,9 +1511,9 @@ class JsonParser extends _$jni.JObject { bool isEnabled( JsonParser_Feature? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _isEnabled( - reference.pointer, _id_isEnabled as _$jni.JMethodIDPtr, _$f.pointer) + reference.pointer, _id_isEnabled as jni$_.JMethodIDPtr, _$f.pointer) .boolean; } @@ -1522,16 +1522,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/StreamReadFeature;)Z', ); - static final _isEnabled$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _isEnabled$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean isEnabled(com.fasterxml.jackson.core.StreamReadFeature f)` /// @@ -1540,11 +1540,11 @@ class JsonParser extends _$jni.JObject { ///@return {@code True} if feature is enabled; {@code false} otherwise ///@since 2.10 bool isEnabled$1( - _$jni.JObject? f, + jni$_.JObject? f, ) { - final _$f = f?.reference ?? _$jni.jNullReference; + final _$f = f?.reference ?? jni$_.jNullReference; return _isEnabled$1(reference.pointer, - _id_isEnabled$1 as _$jni.JMethodIDPtr, _$f.pointer) + _id_isEnabled$1 as jni$_.JMethodIDPtr, _$f.pointer) .boolean; } @@ -1553,16 +1553,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _getFeatureMask = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFeatureMask = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getFeatureMask()` @@ -1572,7 +1572,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.3 int getFeatureMask() { return _getFeatureMask( - reference.pointer, _id_getFeatureMask as _$jni.JMethodIDPtr) + reference.pointer, _id_getFeatureMask as jni$_.JMethodIDPtr) .integer; } @@ -1581,15 +1581,15 @@ class JsonParser extends _$jni.JObject { r'(I)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _setFeatureMask = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _setFeatureMask = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public com.fasterxml.jackson.core.JsonParser setFeatureMask(int mask)` /// The returned object must be released after use, by calling the [release] method. @@ -1603,7 +1603,7 @@ class JsonParser extends _$jni.JObject { int mask, ) { return _setFeatureMask( - reference.pointer, _id_setFeatureMask as _$jni.JMethodIDPtr, mask) + reference.pointer, _id_setFeatureMask as jni$_.JMethodIDPtr, mask) .object(const $JsonParser$NullableType()); } @@ -1612,16 +1612,16 @@ class JsonParser extends _$jni.JObject { r'(II)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _overrideStdFeatures = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32, _$jni.Int32)>)>>( + static final _overrideStdFeatures = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32, jni$_.Int32)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int, int)>(); /// from: `public com.fasterxml.jackson.core.JsonParser overrideStdFeatures(int values, int mask)` /// The returned object must be released after use, by calling the [release] method. @@ -1643,7 +1643,7 @@ class JsonParser extends _$jni.JObject { int mask, ) { return _overrideStdFeatures(reference.pointer, - _id_overrideStdFeatures as _$jni.JMethodIDPtr, values, mask) + _id_overrideStdFeatures as jni$_.JMethodIDPtr, values, mask) .object(const $JsonParser$NullableType()); } @@ -1652,16 +1652,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _getFormatFeatures = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFormatFeatures = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getFormatFeatures()` @@ -1672,7 +1672,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.6 int getFormatFeatures() { return _getFormatFeatures( - reference.pointer, _id_getFormatFeatures as _$jni.JMethodIDPtr) + reference.pointer, _id_getFormatFeatures as jni$_.JMethodIDPtr) .integer; } @@ -1681,16 +1681,16 @@ class JsonParser extends _$jni.JObject { r'(II)Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _overrideFormatFeatures = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32, _$jni.Int32)>)>>( + static final _overrideFormatFeatures = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32, jni$_.Int32)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int, int)>(); /// from: `public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values, int mask)` /// The returned object must be released after use, by calling the [release] method. @@ -1710,7 +1710,7 @@ class JsonParser extends _$jni.JObject { int mask, ) { return _overrideFormatFeatures(reference.pointer, - _id_overrideFormatFeatures as _$jni.JMethodIDPtr, values, mask) + _id_overrideFormatFeatures as jni$_.JMethodIDPtr, values, mask) .object(const $JsonParser$NullableType()); } @@ -1719,16 +1719,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonToken;', ); - static final _nextToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _nextToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonToken nextToken()` @@ -1742,10 +1742,10 @@ class JsonParser extends _$jni.JObject { /// to indicate end-of-input ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - jsontoken_.JsonToken? nextToken() { - return _nextToken(reference.pointer, _id_nextToken as _$jni.JMethodIDPtr) - .object( - const jsontoken_.$JsonToken$NullableType()); + jsontoken$_.JsonToken? nextToken() { + return _nextToken(reference.pointer, _id_nextToken as jni$_.JMethodIDPtr) + .object( + const jsontoken$_.$JsonToken$NullableType()); } static final _id_nextValue = _class.instanceMethodId( @@ -1753,16 +1753,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonToken;', ); - static final _nextValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _nextValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonToken nextValue()` @@ -1784,10 +1784,10 @@ class JsonParser extends _$jni.JObject { /// available yet) ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - jsontoken_.JsonToken? nextValue() { - return _nextValue(reference.pointer, _id_nextValue as _$jni.JMethodIDPtr) - .object( - const jsontoken_.$JsonToken$NullableType()); + jsontoken$_.JsonToken? nextValue() { + return _nextValue(reference.pointer, _id_nextValue as jni$_.JMethodIDPtr) + .object( + const jsontoken$_.$JsonToken$NullableType()); } static final _id_nextFieldName = _class.instanceMethodId( @@ -1795,16 +1795,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/SerializableString;)Z', ); - static final _nextFieldName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _nextFieldName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString str)` /// @@ -1824,11 +1824,11 @@ class JsonParser extends _$jni.JObject { ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems bool nextFieldName( - _$jni.JObject? str, + jni$_.JObject? str, ) { - final _$str = str?.reference ?? _$jni.jNullReference; + final _$str = str?.reference ?? jni$_.jNullReference; return _nextFieldName(reference.pointer, - _id_nextFieldName as _$jni.JMethodIDPtr, _$str.pointer) + _id_nextFieldName as jni$_.JMethodIDPtr, _$str.pointer) .boolean; } @@ -1837,16 +1837,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _nextFieldName$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _nextFieldName$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String nextFieldName()` @@ -1860,10 +1860,10 @@ class JsonParser extends _$jni.JObject { ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems ///@since 2.5 - _$jni.JString? nextFieldName$1() { + jni$_.JString? nextFieldName$1() { return _nextFieldName$1( - reference.pointer, _id_nextFieldName$1 as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_nextFieldName$1 as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_nextTextValue = _class.instanceMethodId( @@ -1871,16 +1871,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _nextTextValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _nextTextValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String nextTextValue()` @@ -1899,10 +1899,10 @@ class JsonParser extends _$jni.JObject { /// to; or {@code null} if next token is of some other type ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JString? nextTextValue() { + jni$_.JString? nextTextValue() { return _nextTextValue( - reference.pointer, _id_nextTextValue as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_nextTextValue as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_nextIntValue = _class.instanceMethodId( @@ -1910,15 +1910,15 @@ class JsonParser extends _$jni.JObject { r'(I)I', ); - static final _nextIntValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallIntMethod') + static final _nextIntValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public int nextIntValue(int defaultValue)` /// @@ -1943,7 +1943,7 @@ class JsonParser extends _$jni.JObject { int defaultValue, ) { return _nextIntValue(reference.pointer, - _id_nextIntValue as _$jni.JMethodIDPtr, defaultValue) + _id_nextIntValue as jni$_.JMethodIDPtr, defaultValue) .integer; } @@ -1952,15 +1952,15 @@ class JsonParser extends _$jni.JObject { r'(J)J', ); - static final _nextLongValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int64,)>)>>('globalEnv_CallLongMethod') + static final _nextLongValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int64,)>)>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public long nextLongValue(long defaultValue)` /// @@ -1985,7 +1985,7 @@ class JsonParser extends _$jni.JObject { int defaultValue, ) { return _nextLongValue(reference.pointer, - _id_nextLongValue as _$jni.JMethodIDPtr, defaultValue) + _id_nextLongValue as jni$_.JMethodIDPtr, defaultValue) .long; } @@ -1994,16 +1994,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Boolean;', ); - static final _nextBooleanValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _nextBooleanValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Boolean nextBooleanValue()` @@ -2025,10 +2025,10 @@ class JsonParser extends _$jni.JObject { /// token parser advanced to; or {@code null} if next token is of some other type ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JBoolean? nextBooleanValue() { + jni$_.JBoolean? nextBooleanValue() { return _nextBooleanValue( - reference.pointer, _id_nextBooleanValue as _$jni.JMethodIDPtr) - .object<_$jni.JBoolean?>(const _$jni.JBooleanNullableType()); + reference.pointer, _id_nextBooleanValue as jni$_.JMethodIDPtr) + .object(const jni$_.JBooleanNullableType()); } static final _id_skipChildren = _class.instanceMethodId( @@ -2036,16 +2036,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonParser;', ); - static final _skipChildren = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _skipChildren = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonParser skipChildren()` @@ -2068,7 +2068,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems JsonParser? skipChildren() { return _skipChildren( - reference.pointer, _id_skipChildren as _$jni.JMethodIDPtr) + reference.pointer, _id_skipChildren as jni$_.JMethodIDPtr) .object(const $JsonParser$NullableType()); } @@ -2077,16 +2077,16 @@ class JsonParser extends _$jni.JObject { r'()V', ); - static final _finishToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _finishToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void finishToken()` @@ -2105,7 +2105,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems ///@since 2.8 void finishToken() { - _finishToken(reference.pointer, _id_finishToken as _$jni.JMethodIDPtr) + _finishToken(reference.pointer, _id_finishToken as jni$_.JMethodIDPtr) .check(); } @@ -2114,16 +2114,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonToken;', ); - static final _currentToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _currentToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.fasterxml.jackson.core.JsonToken currentToken()` @@ -2138,11 +2138,11 @@ class JsonParser extends _$jni.JObject { /// after end-of-input has been encountered, as well as /// if the current token has been explicitly cleared. ///@since 2.8 - jsontoken_.JsonToken? currentToken() { + jsontoken$_.JsonToken? currentToken() { return _currentToken( - reference.pointer, _id_currentToken as _$jni.JMethodIDPtr) - .object( - const jsontoken_.$JsonToken$NullableType()); + reference.pointer, _id_currentToken as jni$_.JMethodIDPtr) + .object( + const jsontoken$_.$JsonToken$NullableType()); } static final _id_currentTokenId = _class.instanceMethodId( @@ -2150,16 +2150,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _currentTokenId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _currentTokenId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int currentTokenId()` @@ -2175,7 +2175,7 @@ class JsonParser extends _$jni.JObject { ///@return {@code int} matching one of constants from JsonTokenId. int currentTokenId() { return _currentTokenId( - reference.pointer, _id_currentTokenId as _$jni.JMethodIDPtr) + reference.pointer, _id_currentTokenId as jni$_.JMethodIDPtr) .integer; } @@ -2184,16 +2184,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonToken;', ); - static final _getCurrentToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCurrentToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonToken getCurrentToken()` @@ -2203,11 +2203,11 @@ class JsonParser extends _$jni.JObject { /// Jackson 2.13 (will be removed from 3.0). ///@return Type of the token this parser currently points to, /// if any: null before any tokens have been read, and - jsontoken_.JsonToken? getCurrentToken() { + jsontoken$_.JsonToken? getCurrentToken() { return _getCurrentToken( - reference.pointer, _id_getCurrentToken as _$jni.JMethodIDPtr) - .object( - const jsontoken_.$JsonToken$NullableType()); + reference.pointer, _id_getCurrentToken as jni$_.JMethodIDPtr) + .object( + const jsontoken$_.$JsonToken$NullableType()); } static final _id_getCurrentTokenId = _class.instanceMethodId( @@ -2215,16 +2215,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _getCurrentTokenId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCurrentTokenId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract int getCurrentTokenId()` @@ -2234,7 +2234,7 @@ class JsonParser extends _$jni.JObject { ///@deprecated Since 2.12 use \#currentTokenId instead int getCurrentTokenId() { return _getCurrentTokenId( - reference.pointer, _id_getCurrentTokenId as _$jni.JMethodIDPtr) + reference.pointer, _id_getCurrentTokenId as jni$_.JMethodIDPtr) .integer; } @@ -2243,16 +2243,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _hasCurrentToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _hasCurrentToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract boolean hasCurrentToken()` @@ -2267,7 +2267,7 @@ class JsonParser extends _$jni.JObject { /// has been consumed) bool hasCurrentToken() { return _hasCurrentToken( - reference.pointer, _id_hasCurrentToken as _$jni.JMethodIDPtr) + reference.pointer, _id_hasCurrentToken as jni$_.JMethodIDPtr) .boolean; } @@ -2276,16 +2276,16 @@ class JsonParser extends _$jni.JObject { r'(I)Z', ); - static final _hasTokenId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallBooleanMethod') + static final _hasTokenId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public abstract boolean hasTokenId(int id)` /// @@ -2305,7 +2305,7 @@ class JsonParser extends _$jni.JObject { int id, ) { return _hasTokenId( - reference.pointer, _id_hasTokenId as _$jni.JMethodIDPtr, id) + reference.pointer, _id_hasTokenId as jni$_.JMethodIDPtr, id) .boolean; } @@ -2314,16 +2314,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/JsonToken;)Z', ); - static final _hasToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _hasToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract boolean hasToken(com.fasterxml.jackson.core.JsonToken t)` /// @@ -2340,11 +2340,11 @@ class JsonParser extends _$jni.JObject { ///@return {@code True} if the parser current points to specified token ///@since 2.6 bool hasToken( - jsontoken_.JsonToken? t, + jsontoken$_.JsonToken? t, ) { - final _$t = t?.reference ?? _$jni.jNullReference; + final _$t = t?.reference ?? jni$_.jNullReference; return _hasToken( - reference.pointer, _id_hasToken as _$jni.JMethodIDPtr, _$t.pointer) + reference.pointer, _id_hasToken as jni$_.JMethodIDPtr, _$t.pointer) .boolean; } @@ -2353,16 +2353,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _isExpectedStartArrayToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isExpectedStartArrayToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isExpectedStartArrayToken()` @@ -2385,7 +2385,7 @@ class JsonParser extends _$jni.JObject { /// {@code false} if not bool isExpectedStartArrayToken() { return _isExpectedStartArrayToken(reference.pointer, - _id_isExpectedStartArrayToken as _$jni.JMethodIDPtr) + _id_isExpectedStartArrayToken as jni$_.JMethodIDPtr) .boolean; } @@ -2395,16 +2395,16 @@ class JsonParser extends _$jni.JObject { ); static final _isExpectedStartObjectToken = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isExpectedStartObjectToken()` @@ -2417,7 +2417,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.5 bool isExpectedStartObjectToken() { return _isExpectedStartObjectToken(reference.pointer, - _id_isExpectedStartObjectToken as _$jni.JMethodIDPtr) + _id_isExpectedStartObjectToken as jni$_.JMethodIDPtr) .boolean; } @@ -2426,16 +2426,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _isExpectedNumberIntToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isExpectedNumberIntToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isExpectedNumberIntToken()` @@ -2451,7 +2451,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.12 bool isExpectedNumberIntToken() { return _isExpectedNumberIntToken(reference.pointer, - _id_isExpectedNumberIntToken as _$jni.JMethodIDPtr) + _id_isExpectedNumberIntToken as jni$_.JMethodIDPtr) .boolean; } @@ -2460,16 +2460,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _isNaN = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isNaN = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean isNaN()` @@ -2487,7 +2487,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems ///@since 2.9 bool isNaN() { - return _isNaN(reference.pointer, _id_isNaN as _$jni.JMethodIDPtr).boolean; + return _isNaN(reference.pointer, _id_isNaN as jni$_.JMethodIDPtr).boolean; } static final _id_clearCurrentToken = _class.instanceMethodId( @@ -2495,16 +2495,16 @@ class JsonParser extends _$jni.JObject { r'()V', ); - static final _clearCurrentToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _clearCurrentToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract void clearCurrentToken()` @@ -2521,7 +2521,7 @@ class JsonParser extends _$jni.JObject { /// it will not be used again). void clearCurrentToken() { _clearCurrentToken( - reference.pointer, _id_clearCurrentToken as _$jni.JMethodIDPtr) + reference.pointer, _id_clearCurrentToken as jni$_.JMethodIDPtr) .check(); } @@ -2530,16 +2530,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonToken;', ); - static final _getLastClearedToken = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getLastClearedToken = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonToken getLastClearedToken()` @@ -2551,11 +2551,11 @@ class JsonParser extends _$jni.JObject { /// Will return null if no tokens have been cleared, /// or if parser has been closed. ///@return Last cleared token, if any; {@code null} otherwise - jsontoken_.JsonToken? getLastClearedToken() { + jsontoken$_.JsonToken? getLastClearedToken() { return _getLastClearedToken( - reference.pointer, _id_getLastClearedToken as _$jni.JMethodIDPtr) - .object( - const jsontoken_.$JsonToken$NullableType()); + reference.pointer, _id_getLastClearedToken as jni$_.JMethodIDPtr) + .object( + const jsontoken$_.$JsonToken$NullableType()); } static final _id_overrideCurrentName = _class.instanceMethodId( @@ -2563,16 +2563,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _overrideCurrentName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _overrideCurrentName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract void overrideCurrentName(java.lang.String name)` /// @@ -2585,11 +2585,11 @@ class JsonParser extends _$jni.JObject { /// resort, as it is a work-around for regular operation. ///@param name Name to use as the current name; may be null. void overrideCurrentName( - _$jni.JString? name, + jni$_.JString? name, ) { - final _$name = name?.reference ?? _$jni.jNullReference; + final _$name = name?.reference ?? jni$_.jNullReference; _overrideCurrentName(reference.pointer, - _id_overrideCurrentName as _$jni.JMethodIDPtr, _$name.pointer) + _id_overrideCurrentName as jni$_.JMethodIDPtr, _$name.pointer) .check(); } @@ -2598,16 +2598,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getCurrentName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCurrentName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract java.lang.String getCurrentName()` @@ -2617,10 +2617,10 @@ class JsonParser extends _$jni.JObject { ///@return Name of the current field in the parsing context ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JString? getCurrentName() { + jni$_.JString? getCurrentName() { return _getCurrentName( - reference.pointer, _id_getCurrentName as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getCurrentName as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_currentName = _class.instanceMethodId( @@ -2628,16 +2628,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _currentName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _currentName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String currentName()` @@ -2652,10 +2652,10 @@ class JsonParser extends _$jni.JObject { ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems ///@since 2.10 - _$jni.JString? currentName() { + jni$_.JString? currentName() { return _currentName( - reference.pointer, _id_currentName as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_currentName as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getText = _class.instanceMethodId( @@ -2663,16 +2663,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getText = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getText = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract java.lang.String getText()` @@ -2686,9 +2686,9 @@ class JsonParser extends _$jni.JObject { /// by \#nextToken() or other iteration methods) ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JString? getText() { - return _getText(reference.pointer, _id_getText as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? getText() { + return _getText(reference.pointer, _id_getText as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getText$1 = _class.instanceMethodId( @@ -2696,16 +2696,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/io/Writer;)I', ); - static final _getText$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getText$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public int getText(java.io.Writer writer)` /// @@ -2725,10 +2725,10 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems ///@since 2.8 int getText$1( - _$jni.JObject? writer, + jni$_.JObject? writer, ) { - final _$writer = writer?.reference ?? _$jni.jNullReference; - return _getText$1(reference.pointer, _id_getText$1 as _$jni.JMethodIDPtr, + final _$writer = writer?.reference ?? jni$_.jNullReference; + return _getText$1(reference.pointer, _id_getText$1 as jni$_.JMethodIDPtr, _$writer.pointer) .integer; } @@ -2738,16 +2738,16 @@ class JsonParser extends _$jni.JObject { r'()[C', ); - static final _getTextCharacters = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getTextCharacters = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract char[] getTextCharacters()` @@ -2780,11 +2780,11 @@ class JsonParser extends _$jni.JObject { /// at offset 0, and not necessarily until the end of buffer) ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JArray<_$jni.jchar>? getTextCharacters() { + jni$_.JArray? getTextCharacters() { return _getTextCharacters( - reference.pointer, _id_getTextCharacters as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.jchar>?>( - const _$jni.JArrayNullableType<_$jni.jchar>(_$jni.jcharType())); + reference.pointer, _id_getTextCharacters as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType(jni$_.jcharType())); } static final _id_getTextLength = _class.instanceMethodId( @@ -2792,16 +2792,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _getTextLength = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getTextLength = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract int getTextLength()` @@ -2815,7 +2815,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getTextLength() { return _getTextLength( - reference.pointer, _id_getTextLength as _$jni.JMethodIDPtr) + reference.pointer, _id_getTextLength as jni$_.JMethodIDPtr) .integer; } @@ -2824,16 +2824,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _getTextOffset = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getTextOffset = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract int getTextOffset()` @@ -2847,7 +2847,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getTextOffset() { return _getTextOffset( - reference.pointer, _id_getTextOffset as _$jni.JMethodIDPtr) + reference.pointer, _id_getTextOffset as jni$_.JMethodIDPtr) .integer; } @@ -2856,16 +2856,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _hasTextCharacters = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _hasTextCharacters = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract boolean hasTextCharacters()` @@ -2886,7 +2886,7 @@ class JsonParser extends _$jni.JObject { /// means that it may or may not exist bool hasTextCharacters() { return _hasTextCharacters( - reference.pointer, _id_hasTextCharacters as _$jni.JMethodIDPtr) + reference.pointer, _id_hasTextCharacters as jni$_.JMethodIDPtr) .boolean; } @@ -2895,16 +2895,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Number;', ); - static final _getNumberValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNumberValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract java.lang.Number getNumberValue()` @@ -2920,10 +2920,10 @@ class JsonParser extends _$jni.JObject { /// the current token is not numeric, or if decoding of the value fails /// (invalid format for numbers); plain IOException if underlying /// content read fails (possible if values are extracted lazily) - _$jni.JNumber? getNumberValue() { + jni$_.JNumber? getNumberValue() { return _getNumberValue( - reference.pointer, _id_getNumberValue as _$jni.JMethodIDPtr) - .object<_$jni.JNumber?>(const _$jni.JNumberNullableType()); + reference.pointer, _id_getNumberValue as jni$_.JMethodIDPtr) + .object(const jni$_.JNumberNullableType()); } static final _id_getNumberValueExact = _class.instanceMethodId( @@ -2931,16 +2931,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Number;', ); - static final _getNumberValueExact = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNumberValueExact = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Number getNumberValueExact()` @@ -2960,10 +2960,10 @@ class JsonParser extends _$jni.JObject { /// (invalid format for numbers); plain IOException if underlying /// content read fails (possible if values are extracted lazily) ///@since 2.12 - _$jni.JNumber? getNumberValueExact() { + jni$_.JNumber? getNumberValueExact() { return _getNumberValueExact( - reference.pointer, _id_getNumberValueExact as _$jni.JMethodIDPtr) - .object<_$jni.JNumber?>(const _$jni.JNumberNullableType()); + reference.pointer, _id_getNumberValueExact as jni$_.JMethodIDPtr) + .object(const jni$_.JNumberNullableType()); } static final _id_getNumberType = _class.instanceMethodId( @@ -2971,16 +2971,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/JsonParser$NumberType;', ); - static final _getNumberType = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNumberType = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()` @@ -2995,7 +2995,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems JsonParser_NumberType? getNumberType() { return _getNumberType( - reference.pointer, _id_getNumberType as _$jni.JMethodIDPtr) + reference.pointer, _id_getNumberType as jni$_.JMethodIDPtr) .object( const $JsonParser_NumberType$NullableType()); } @@ -3005,16 +3005,16 @@ class JsonParser extends _$jni.JObject { r'()B', ); - static final _getByteValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getByteValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallByteMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public byte getByteValue()` @@ -3042,7 +3042,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getByteValue() { return _getByteValue( - reference.pointer, _id_getByteValue as _$jni.JMethodIDPtr) + reference.pointer, _id_getByteValue as jni$_.JMethodIDPtr) .byte; } @@ -3051,16 +3051,16 @@ class JsonParser extends _$jni.JObject { r'()S', ); - static final _getShortValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getShortValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallShortMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public short getShortValue()` @@ -3082,7 +3082,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getShortValue() { return _getShortValue( - reference.pointer, _id_getShortValue as _$jni.JMethodIDPtr) + reference.pointer, _id_getShortValue as jni$_.JMethodIDPtr) .short; } @@ -3091,16 +3091,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _getIntValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getIntValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract int getIntValue()` @@ -3122,7 +3122,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getIntValue() { return _getIntValue( - reference.pointer, _id_getIntValue as _$jni.JMethodIDPtr) + reference.pointer, _id_getIntValue as jni$_.JMethodIDPtr) .integer; } @@ -3131,16 +3131,16 @@ class JsonParser extends _$jni.JObject { r'()J', ); - static final _getLongValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getLongValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract long getLongValue()` @@ -3162,7 +3162,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getLongValue() { return _getLongValue( - reference.pointer, _id_getLongValue as _$jni.JMethodIDPtr) + reference.pointer, _id_getLongValue as jni$_.JMethodIDPtr) .long; } @@ -3171,16 +3171,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/math/BigInteger;', ); - static final _getBigIntegerValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getBigIntegerValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract java.math.BigInteger getBigIntegerValue()` @@ -3197,10 +3197,10 @@ class JsonParser extends _$jni.JObject { /// otherwise exception thrown ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JObject? getBigIntegerValue() { + jni$_.JObject? getBigIntegerValue() { return _getBigIntegerValue( - reference.pointer, _id_getBigIntegerValue as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getBigIntegerValue as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getFloatValue = _class.instanceMethodId( @@ -3208,16 +3208,16 @@ class JsonParser extends _$jni.JObject { r'()F', ); - static final _getFloatValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getFloatValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract float getFloatValue()` @@ -3239,7 +3239,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems double getFloatValue() { return _getFloatValue( - reference.pointer, _id_getFloatValue as _$jni.JMethodIDPtr) + reference.pointer, _id_getFloatValue as jni$_.JMethodIDPtr) .float; } @@ -3248,16 +3248,16 @@ class JsonParser extends _$jni.JObject { r'()D', ); - static final _getDoubleValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getDoubleValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallDoubleMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract double getDoubleValue()` @@ -3279,7 +3279,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems double getDoubleValue() { return _getDoubleValue( - reference.pointer, _id_getDoubleValue as _$jni.JMethodIDPtr) + reference.pointer, _id_getDoubleValue as jni$_.JMethodIDPtr) .doubleFloat; } @@ -3288,16 +3288,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/math/BigDecimal;', ); - static final _getDecimalValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getDecimalValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract java.math.BigDecimal getDecimalValue()` @@ -3311,10 +3311,10 @@ class JsonParser extends _$jni.JObject { /// otherwise exception thrown ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JObject? getDecimalValue() { + jni$_.JObject? getDecimalValue() { return _getDecimalValue( - reference.pointer, _id_getDecimalValue as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getDecimalValue as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getBooleanValue = _class.instanceMethodId( @@ -3322,16 +3322,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _getBooleanValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getBooleanValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getBooleanValue()` @@ -3349,7 +3349,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems bool getBooleanValue() { return _getBooleanValue( - reference.pointer, _id_getBooleanValue as _$jni.JMethodIDPtr) + reference.pointer, _id_getBooleanValue as jni$_.JMethodIDPtr) .boolean; } @@ -3358,16 +3358,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _getEmbeddedObject = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getEmbeddedObject = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object getEmbeddedObject()` @@ -3387,10 +3387,10 @@ class JsonParser extends _$jni.JObject { /// for the current token, if any; {@code null otherwise} ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JObject? getEmbeddedObject() { + jni$_.JObject? getEmbeddedObject() { return _getEmbeddedObject( - reference.pointer, _id_getEmbeddedObject as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getEmbeddedObject as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getBinaryValue = _class.instanceMethodId( @@ -3398,16 +3398,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/Base64Variant;)[B', ); - static final _getBinaryValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getBinaryValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant bv)` /// The returned object must be released after use, by calling the [release] method. @@ -3432,14 +3432,14 @@ class JsonParser extends _$jni.JObject { ///@return Decoded binary data ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JArray<_$jni.jbyte>? getBinaryValue( - _$jni.JObject? bv, + jni$_.JArray? getBinaryValue( + jni$_.JObject? bv, ) { - final _$bv = bv?.reference ?? _$jni.jNullReference; + final _$bv = bv?.reference ?? jni$_.jNullReference; return _getBinaryValue(reference.pointer, - _id_getBinaryValue as _$jni.JMethodIDPtr, _$bv.pointer) - .object<_$jni.JArray<_$jni.jbyte>?>( - const _$jni.JArrayNullableType<_$jni.jbyte>(_$jni.jbyteType())); + _id_getBinaryValue as jni$_.JMethodIDPtr, _$bv.pointer) + .object?>( + const jni$_.JArrayNullableType(jni$_.jbyteType())); } static final _id_getBinaryValue$1 = _class.instanceMethodId( @@ -3447,16 +3447,16 @@ class JsonParser extends _$jni.JObject { r'()[B', ); - static final _getBinaryValue$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getBinaryValue$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public byte[] getBinaryValue()` @@ -3468,11 +3468,11 @@ class JsonParser extends _$jni.JObject { ///@return Decoded binary data ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems - _$jni.JArray<_$jni.jbyte>? getBinaryValue$1() { + jni$_.JArray? getBinaryValue$1() { return _getBinaryValue$1( - reference.pointer, _id_getBinaryValue$1 as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.jbyte>?>( - const _$jni.JArrayNullableType<_$jni.jbyte>(_$jni.jbyteType())); + reference.pointer, _id_getBinaryValue$1 as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType(jni$_.jbyteType())); } static final _id_readBinaryValue = _class.instanceMethodId( @@ -3480,16 +3480,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/io/OutputStream;)I', ); - static final _readBinaryValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _readBinaryValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public int readBinaryValue(java.io.OutputStream out)` /// @@ -3505,11 +3505,11 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems ///@since 2.1 int readBinaryValue( - _$jni.JObject? out, + jni$_.JObject? out, ) { - final _$out = out?.reference ?? _$jni.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; return _readBinaryValue(reference.pointer, - _id_readBinaryValue as _$jni.JMethodIDPtr, _$out.pointer) + _id_readBinaryValue as jni$_.JMethodIDPtr, _$out.pointer) .integer; } @@ -3518,22 +3518,22 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/Base64Variant;Ljava/io/OutputStream;)I', ); - static final _readBinaryValue$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _readBinaryValue$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public int readBinaryValue(com.fasterxml.jackson.core.Base64Variant bv, java.io.OutputStream out)` /// @@ -3546,14 +3546,14 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems ///@since 2.1 int readBinaryValue$1( - _$jni.JObject? bv, - _$jni.JObject? out, + jni$_.JObject? bv, + jni$_.JObject? out, ) { - final _$bv = bv?.reference ?? _$jni.jNullReference; - final _$out = out?.reference ?? _$jni.jNullReference; + final _$bv = bv?.reference ?? jni$_.jNullReference; + final _$out = out?.reference ?? jni$_.jNullReference; return _readBinaryValue$1( reference.pointer, - _id_readBinaryValue$1 as _$jni.JMethodIDPtr, + _id_readBinaryValue$1 as jni$_.JMethodIDPtr, _$bv.pointer, _$out.pointer) .integer; @@ -3564,16 +3564,16 @@ class JsonParser extends _$jni.JObject { r'()I', ); - static final _getValueAsInt = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValueAsInt = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getValueAsInt()` @@ -3593,7 +3593,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getValueAsInt() { return _getValueAsInt( - reference.pointer, _id_getValueAsInt as _$jni.JMethodIDPtr) + reference.pointer, _id_getValueAsInt as jni$_.JMethodIDPtr) .integer; } @@ -3602,15 +3602,15 @@ class JsonParser extends _$jni.JObject { r'(I)I', ); - static final _getValueAsInt$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallIntMethod') + static final _getValueAsInt$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public int getValueAsInt(int def)` /// @@ -3631,7 +3631,7 @@ class JsonParser extends _$jni.JObject { int def, ) { return _getValueAsInt$1( - reference.pointer, _id_getValueAsInt$1 as _$jni.JMethodIDPtr, def) + reference.pointer, _id_getValueAsInt$1 as jni$_.JMethodIDPtr, def) .integer; } @@ -3640,16 +3640,16 @@ class JsonParser extends _$jni.JObject { r'()J', ); - static final _getValueAsLong = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValueAsLong = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public long getValueAsLong()` @@ -3669,7 +3669,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems int getValueAsLong() { return _getValueAsLong( - reference.pointer, _id_getValueAsLong as _$jni.JMethodIDPtr) + reference.pointer, _id_getValueAsLong as jni$_.JMethodIDPtr) .long; } @@ -3678,15 +3678,15 @@ class JsonParser extends _$jni.JObject { r'(J)J', ); - static final _getValueAsLong$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int64,)>)>>('globalEnv_CallLongMethod') + static final _getValueAsLong$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int64,)>)>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public long getValueAsLong(long def)` /// @@ -3707,7 +3707,7 @@ class JsonParser extends _$jni.JObject { int def, ) { return _getValueAsLong$1( - reference.pointer, _id_getValueAsLong$1 as _$jni.JMethodIDPtr, def) + reference.pointer, _id_getValueAsLong$1 as jni$_.JMethodIDPtr, def) .long; } @@ -3716,16 +3716,16 @@ class JsonParser extends _$jni.JObject { r'()D', ); - static final _getValueAsDouble = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValueAsDouble = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallDoubleMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public double getValueAsDouble()` @@ -3745,7 +3745,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems double getValueAsDouble() { return _getValueAsDouble( - reference.pointer, _id_getValueAsDouble as _$jni.JMethodIDPtr) + reference.pointer, _id_getValueAsDouble as jni$_.JMethodIDPtr) .doubleFloat; } @@ -3754,16 +3754,16 @@ class JsonParser extends _$jni.JObject { r'(D)D', ); - static final _getValueAsDouble$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Double,)>)>>('globalEnv_CallDoubleMethod') + static final _getValueAsDouble$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Double,)>)>>('globalEnv_CallDoubleMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, double)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, double)>(); /// from: `public double getValueAsDouble(double def)` /// @@ -3784,7 +3784,7 @@ class JsonParser extends _$jni.JObject { double def, ) { return _getValueAsDouble$1(reference.pointer, - _id_getValueAsDouble$1 as _$jni.JMethodIDPtr, def) + _id_getValueAsDouble$1 as jni$_.JMethodIDPtr, def) .doubleFloat; } @@ -3793,16 +3793,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _getValueAsBoolean = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValueAsBoolean = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getValueAsBoolean()` @@ -3822,7 +3822,7 @@ class JsonParser extends _$jni.JObject { /// JsonParseException for decoding problems bool getValueAsBoolean() { return _getValueAsBoolean( - reference.pointer, _id_getValueAsBoolean as _$jni.JMethodIDPtr) + reference.pointer, _id_getValueAsBoolean as jni$_.JMethodIDPtr) .boolean; } @@ -3831,16 +3831,16 @@ class JsonParser extends _$jni.JObject { r'(Z)Z', ); - static final _getValueAsBoolean$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallBooleanMethod') + static final _getValueAsBoolean$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public boolean getValueAsBoolean(boolean def)` /// @@ -3861,7 +3861,7 @@ class JsonParser extends _$jni.JObject { bool def, ) { return _getValueAsBoolean$1(reference.pointer, - _id_getValueAsBoolean$1 as _$jni.JMethodIDPtr, def ? 1 : 0) + _id_getValueAsBoolean$1 as jni$_.JMethodIDPtr, def ? 1 : 0) .boolean; } @@ -3870,16 +3870,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getValueAsString = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValueAsString = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getValueAsString()` @@ -3896,10 +3896,10 @@ class JsonParser extends _$jni.JObject { ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems ///@since 2.1 - _$jni.JString? getValueAsString() { + jni$_.JString? getValueAsString() { return _getValueAsString( - reference.pointer, _id_getValueAsString as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getValueAsString as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getValueAsString$1 = _class.instanceMethodId( @@ -3907,16 +3907,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/lang/String;)Ljava/lang/String;', ); - static final _getValueAsString$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getValueAsString$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract java.lang.String getValueAsString(java.lang.String def)` /// The returned object must be released after use, by calling the [release] method. @@ -3933,13 +3933,13 @@ class JsonParser extends _$jni.JObject { ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems ///@since 2.1 - _$jni.JString? getValueAsString$1( - _$jni.JString? def, + jni$_.JString? getValueAsString$1( + jni$_.JString? def, ) { - final _$def = def?.reference ?? _$jni.jNullReference; + final _$def = def?.reference ?? jni$_.jNullReference; return _getValueAsString$1(reference.pointer, - _id_getValueAsString$1 as _$jni.JMethodIDPtr, _$def.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _id_getValueAsString$1 as jni$_.JMethodIDPtr, _$def.pointer) + .object(const jni$_.JStringNullableType()); } static final _id_canReadObjectId = _class.instanceMethodId( @@ -3947,16 +3947,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _canReadObjectId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _canReadObjectId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean canReadObjectId()` @@ -3974,7 +3974,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.3 bool canReadObjectId() { return _canReadObjectId( - reference.pointer, _id_canReadObjectId as _$jni.JMethodIDPtr) + reference.pointer, _id_canReadObjectId as jni$_.JMethodIDPtr) .boolean; } @@ -3983,16 +3983,16 @@ class JsonParser extends _$jni.JObject { r'()Z', ); - static final _canReadTypeId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _canReadTypeId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean canReadTypeId()` @@ -4010,7 +4010,7 @@ class JsonParser extends _$jni.JObject { ///@since 2.3 bool canReadTypeId() { return _canReadTypeId( - reference.pointer, _id_canReadTypeId as _$jni.JMethodIDPtr) + reference.pointer, _id_canReadTypeId as jni$_.JMethodIDPtr) .boolean; } @@ -4019,16 +4019,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _getObjectId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getObjectId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object getObjectId()` @@ -4047,10 +4047,10 @@ class JsonParser extends _$jni.JObject { ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems ///@since 2.3 - _$jni.JObject? getObjectId() { + jni$_.JObject? getObjectId() { return _getObjectId( - reference.pointer, _id_getObjectId as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_getObjectId as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_getTypeId = _class.instanceMethodId( @@ -4058,16 +4058,16 @@ class JsonParser extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _getTypeId = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getTypeId = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object getTypeId()` @@ -4086,9 +4086,9 @@ class JsonParser extends _$jni.JObject { ///@throws IOException for low-level read issues, or /// JsonParseException for decoding problems ///@since 2.3 - _$jni.JObject? getTypeId() { - return _getTypeId(reference.pointer, _id_getTypeId as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? getTypeId() { + return _getTypeId(reference.pointer, _id_getTypeId as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_readValueAs = _class.instanceMethodId( @@ -4096,16 +4096,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/lang/Class;)Ljava/lang/Object;', ); - static final _readValueAs = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _readValueAs = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T readValueAs(java.lang.Class valueType)` /// The returned object must be released after use, by calling the [release] method. @@ -4135,13 +4135,13 @@ class JsonParser extends _$jni.JObject { ///@return Java value read from content ///@throws IOException if there is either an underlying I/O problem or decoding /// issue at format layer - $T? readValueAs<$T extends _$jni.JObject?>( - _$jni.JObject? valueType, { - required _$jni.JObjType<$T> T, + $T? readValueAs<$T extends jni$_.JObject?>( + jni$_.JObject? valueType, { + required jni$_.JObjType<$T> T, }) { - final _$valueType = valueType?.reference ?? _$jni.jNullReference; + final _$valueType = valueType?.reference ?? jni$_.jNullReference; return _readValueAs(reference.pointer, - _id_readValueAs as _$jni.JMethodIDPtr, _$valueType.pointer) + _id_readValueAs as jni$_.JMethodIDPtr, _$valueType.pointer) .object<$T?>(T.nullableType); } @@ -4150,16 +4150,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/type/TypeReference;)Ljava/lang/Object;', ); - static final _readValueAs$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _readValueAs$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T readValueAs(com.fasterxml.jackson.core.type.TypeReference valueTypeRef)` /// The returned object must be released after use, by calling the [release] method. @@ -4186,13 +4186,13 @@ class JsonParser extends _$jni.JObject { ///@return Java value read from content ///@throws IOException if there is either an underlying I/O problem or decoding /// issue at format layer - $T? readValueAs$1<$T extends _$jni.JObject?>( - _$jni.JObject? valueTypeRef, { - required _$jni.JObjType<$T> T, + $T? readValueAs$1<$T extends jni$_.JObject?>( + jni$_.JObject? valueTypeRef, { + required jni$_.JObjType<$T> T, }) { - final _$valueTypeRef = valueTypeRef?.reference ?? _$jni.jNullReference; + final _$valueTypeRef = valueTypeRef?.reference ?? jni$_.jNullReference; return _readValueAs$1(reference.pointer, - _id_readValueAs$1 as _$jni.JMethodIDPtr, _$valueTypeRef.pointer) + _id_readValueAs$1 as jni$_.JMethodIDPtr, _$valueTypeRef.pointer) .object<$T?>(T.nullableType); } @@ -4201,16 +4201,16 @@ class JsonParser extends _$jni.JObject { r'(Ljava/lang/Class;)Ljava/util/Iterator;', ); - static final _readValuesAs = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _readValuesAs = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.util.Iterator readValuesAs(java.lang.Class valueType)` /// The returned object must be released after use, by calling the [release] method. @@ -4223,15 +4223,15 @@ class JsonParser extends _$jni.JObject { ///@return Iterator for reading multiple Java values from content ///@throws IOException if there is either an underlying I/O problem or decoding /// issue at format layer - _$jni.JIterator<$T?>? readValuesAs<$T extends _$jni.JObject?>( - _$jni.JObject? valueType, { - required _$jni.JObjType<$T> T, + jni$_.JIterator<$T?>? readValuesAs<$T extends jni$_.JObject?>( + jni$_.JObject? valueType, { + required jni$_.JObjType<$T> T, }) { - final _$valueType = valueType?.reference ?? _$jni.jNullReference; + final _$valueType = valueType?.reference ?? jni$_.jNullReference; return _readValuesAs(reference.pointer, - _id_readValuesAs as _$jni.JMethodIDPtr, _$valueType.pointer) - .object<_$jni.JIterator<$T?>?>( - _$jni.JIteratorNullableType<$T?>(T.nullableType)); + _id_readValuesAs as jni$_.JMethodIDPtr, _$valueType.pointer) + .object?>( + jni$_.JIteratorNullableType<$T?>(T.nullableType)); } static final _id_readValuesAs$1 = _class.instanceMethodId( @@ -4239,16 +4239,16 @@ class JsonParser extends _$jni.JObject { r'(Lcom/fasterxml/jackson/core/type/TypeReference;)Ljava/util/Iterator;', ); - static final _readValuesAs$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _readValuesAs$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.util.Iterator readValuesAs(com.fasterxml.jackson.core.type.TypeReference valueTypeRef)` /// The returned object must be released after use, by calling the [release] method. @@ -4261,15 +4261,15 @@ class JsonParser extends _$jni.JObject { ///@return Iterator for reading multiple Java values from content ///@throws IOException if there is either an underlying I/O problem or decoding /// issue at format layer - _$jni.JIterator<$T?>? readValuesAs$1<$T extends _$jni.JObject?>( - _$jni.JObject? valueTypeRef, { - required _$jni.JObjType<$T> T, + jni$_.JIterator<$T?>? readValuesAs$1<$T extends jni$_.JObject?>( + jni$_.JObject? valueTypeRef, { + required jni$_.JObjType<$T> T, }) { - final _$valueTypeRef = valueTypeRef?.reference ?? _$jni.jNullReference; + final _$valueTypeRef = valueTypeRef?.reference ?? jni$_.jNullReference; return _readValuesAs$1(reference.pointer, - _id_readValuesAs$1 as _$jni.JMethodIDPtr, _$valueTypeRef.pointer) - .object<_$jni.JIterator<$T?>?>( - _$jni.JIteratorNullableType<$T?>(T.nullableType)); + _id_readValuesAs$1 as jni$_.JMethodIDPtr, _$valueTypeRef.pointer) + .object?>( + jni$_.JIteratorNullableType<$T?>(T.nullableType)); } static final _id_readValueAsTree = _class.instanceMethodId( @@ -4277,16 +4277,16 @@ class JsonParser extends _$jni.JObject { r'()Lcom/fasterxml/jackson/core/TreeNode;', ); - static final _readValueAsTree = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _readValueAsTree = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public T readValueAsTree()` @@ -4301,83 +4301,83 @@ class JsonParser extends _$jni.JObject { ///@return root of the document, or null if empty or whitespace. ///@throws IOException if there is either an underlying I/O problem or decoding /// issue at format layer - $T? readValueAsTree<$T extends _$jni.JObject?>({ - required _$jni.JObjType<$T> T, + $T? readValueAsTree<$T extends jni$_.JObject?>({ + required jni$_.JObjType<$T> T, }) { return _readValueAsTree( - reference.pointer, _id_readValueAsTree as _$jni.JMethodIDPtr) + reference.pointer, _id_readValueAsTree as jni$_.JMethodIDPtr) .object<$T?>(T.nullableType); } } -final class $JsonParser$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $JsonParser$NullableType extends jni$_.JObjType { + @jni$_.internal const $JsonParser$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonParser;'; - @_$jni.internal - @_$core.override - JsonParser? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + JsonParser? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonParser.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonParser$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonParser$NullableType) && other is $JsonParser$NullableType; } } -final class $JsonParser$Type extends _$jni.JObjType { - @_$jni.internal +final class $JsonParser$Type extends jni$_.JObjType { + @jni$_.internal const $JsonParser$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonParser;'; - @_$jni.internal - @_$core.override - JsonParser fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonParser fromReference(jni$_.JReference reference) => JsonParser.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonParser$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonParser$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonParser$Type) && other is $JsonParser$Type; } diff --git a/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonToken.dart b/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonToken.dart index cc94a7cc7..88f09cde7 100644 --- a/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonToken.dart +++ b/pkgs/jnigen/test/jackson_core_test/third_party/bindings/com/fasterxml/jackson/core/JsonToken.dart @@ -47,28 +47,28 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; /// from: `com.fasterxml.jackson.core.JsonToken` /// /// Enumeration for basic token types used for returning results /// of parsing JSON content. -class JsonToken extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonToken extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonToken.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/fasterxml/jackson/core/JsonToken'); + jni$_.JClass.forName(r'com/fasterxml/jackson/core/JsonToken'); /// The type which includes information such as the signature of this class. static const nullableType = $JsonToken$NullableType(); @@ -78,24 +78,24 @@ class JsonToken extends _$jni.JObject { r'()[Lcom/fasterxml/jackson/core/JsonToken;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.fasterxml.jackson.core.JsonToken[] values()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray? values() { - return _values(_class.reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JArray?>( - const _$jni.JArrayNullableType( + static jni$_.JArray? values() { + return _values(_class.reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( $JsonToken$NullableType())); } @@ -104,24 +104,24 @@ class JsonToken extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonToken;', ); - static final _valueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _valueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.fasterxml.jackson.core.JsonToken valueOf(java.lang.String name)` /// The returned object must be released after use, by calling the [release] method. static JsonToken? valueOf( - _$jni.JString? name, + jni$_.JString? name, ) { - final _$name = name?.reference ?? _$jni.jNullReference; - return _valueOf(_class.reference.pointer, _id_valueOf as _$jni.JMethodIDPtr, + final _$name = name?.reference ?? jni$_.jNullReference; + return _valueOf(_class.reference.pointer, _id_valueOf as jni$_.JMethodIDPtr, _$name.pointer) .object(const $JsonToken$NullableType()); } @@ -131,21 +131,21 @@ class JsonToken extends _$jni.JObject { r'()I', ); - static final _id = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _id = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final int id()` int id() { - return _id(reference.pointer, _id_id as _$jni.JMethodIDPtr).integer; + return _id(reference.pointer, _id_id as jni$_.JMethodIDPtr).integer; } static final _id_asString = _class.instanceMethodId( @@ -153,23 +153,23 @@ class JsonToken extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _asString = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _asString = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final java.lang.String asString()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? asString() { - return _asString(reference.pointer, _id_asString as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + jni$_.JString? asString() { + return _asString(reference.pointer, _id_asString as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_asCharArray = _class.instanceMethodId( @@ -177,25 +177,25 @@ class JsonToken extends _$jni.JObject { r'()[C', ); - static final _asCharArray = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _asCharArray = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final char[] asCharArray()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.jchar>? asCharArray() { + jni$_.JArray? asCharArray() { return _asCharArray( - reference.pointer, _id_asCharArray as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.jchar>?>( - const _$jni.JArrayNullableType<_$jni.jchar>(_$jni.jcharType())); + reference.pointer, _id_asCharArray as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType(jni$_.jcharType())); } static final _id_asByteArray = _class.instanceMethodId( @@ -203,25 +203,25 @@ class JsonToken extends _$jni.JObject { r'()[B', ); - static final _asByteArray = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _asByteArray = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final byte[] asByteArray()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.jbyte>? asByteArray() { + jni$_.JArray? asByteArray() { return _asByteArray( - reference.pointer, _id_asByteArray as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.jbyte>?>( - const _$jni.JArrayNullableType<_$jni.jbyte>(_$jni.jbyteType())); + reference.pointer, _id_asByteArray as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType(jni$_.jbyteType())); } static final _id_isNumeric = _class.instanceMethodId( @@ -229,16 +229,16 @@ class JsonToken extends _$jni.JObject { r'()Z', ); - static final _isNumeric = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isNumeric = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final boolean isNumeric()` @@ -246,7 +246,7 @@ class JsonToken extends _$jni.JObject { /// @return {@code True} if this token is {@code VALUE_NUMBER_INT} or {@code VALUE_NUMBER_FLOAT}, /// {@code false} otherwise bool isNumeric() { - return _isNumeric(reference.pointer, _id_isNumeric as _$jni.JMethodIDPtr) + return _isNumeric(reference.pointer, _id_isNumeric as jni$_.JMethodIDPtr) .boolean; } @@ -255,16 +255,16 @@ class JsonToken extends _$jni.JObject { r'()Z', ); - static final _isStructStart = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isStructStart = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final boolean isStructStart()` @@ -278,7 +278,7 @@ class JsonToken extends _$jni.JObject { ///@since 2.3 bool isStructStart() { return _isStructStart( - reference.pointer, _id_isStructStart as _$jni.JMethodIDPtr) + reference.pointer, _id_isStructStart as jni$_.JMethodIDPtr) .boolean; } @@ -287,16 +287,16 @@ class JsonToken extends _$jni.JObject { r'()Z', ); - static final _isStructEnd = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isStructEnd = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final boolean isStructEnd()` @@ -310,7 +310,7 @@ class JsonToken extends _$jni.JObject { ///@since 2.3 bool isStructEnd() { return _isStructEnd( - reference.pointer, _id_isStructEnd as _$jni.JMethodIDPtr) + reference.pointer, _id_isStructEnd as jni$_.JMethodIDPtr) .boolean; } @@ -319,16 +319,16 @@ class JsonToken extends _$jni.JObject { r'()Z', ); - static final _isScalarValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isScalarValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final boolean isScalarValue()` @@ -341,7 +341,7 @@ class JsonToken extends _$jni.JObject { /// {@code VALUE_xxx} tokens), {@code false} otherwise bool isScalarValue() { return _isScalarValue( - reference.pointer, _id_isScalarValue as _$jni.JMethodIDPtr) + reference.pointer, _id_isScalarValue as jni$_.JMethodIDPtr) .boolean; } @@ -350,16 +350,16 @@ class JsonToken extends _$jni.JObject { r'()Z', ); - static final _isBoolean = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _isBoolean = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final boolean isBoolean()` @@ -367,79 +367,79 @@ class JsonToken extends _$jni.JObject { /// @return {@code True} if this token is {@code VALUE_TRUE} or {@code VALUE_FALSE}, /// {@code false} otherwise bool isBoolean() { - return _isBoolean(reference.pointer, _id_isBoolean as _$jni.JMethodIDPtr) + return _isBoolean(reference.pointer, _id_isBoolean as jni$_.JMethodIDPtr) .boolean; } } -final class $JsonToken$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $JsonToken$NullableType extends jni$_.JObjType { + @jni$_.internal const $JsonToken$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonToken;'; - @_$jni.internal - @_$core.override - JsonToken? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + JsonToken? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonToken.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonToken$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonToken$NullableType) && other is $JsonToken$NullableType; } } -final class $JsonToken$Type extends _$jni.JObjType { - @_$jni.internal +final class $JsonToken$Type extends jni$_.JObjType { + @jni$_.internal const $JsonToken$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/fasterxml/jackson/core/JsonToken;'; - @_$jni.internal - @_$core.override - JsonToken fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonToken fromReference(jni$_.JReference reference) => JsonToken.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonToken$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonToken$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonToken$Type) && other is $JsonToken$Type; } diff --git a/pkgs/jnigen/test/kotlin_test/bindings/kotlin.dart b/pkgs/jnigen/test/kotlin_test/bindings/kotlin.dart index d6769f1aa..a7ba372f5 100644 --- a/pkgs/jnigen/test/kotlin_test/bindings/kotlin.dart +++ b/pkgs/jnigen/test/kotlin_test/bindings/kotlin.dart @@ -34,41 +34,41 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; /// from: `com.github.dart_lang.jnigen.Measure` -class Measure<$T extends _$jni.JObject> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class Measure<$T extends jni$_.JObject> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal Measure.fromReference( this.T, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T>(T), super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/Measure'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/Measure'); /// The type which includes information such as the signature of this class. - static $Measure$NullableType<$T> nullableType<$T extends _$jni.JObject>( - _$jni.JObjType<$T> T, + static $Measure$NullableType<$T> nullableType<$T extends jni$_.JObject>( + jni$_.JObjType<$T> T, ) { return $Measure$NullableType<$T>( T, ); } - static $Measure$Type<$T> type<$T extends _$jni.JObject>( - _$jni.JObjType<$T> T, + static $Measure$Type<$T> type<$T extends jni$_.JObject>( + jni$_.JObjType<$T> T, ) { return $Measure$Type<$T>( T, @@ -80,21 +80,21 @@ class Measure<$T extends _$jni.JObject> extends _$jni.JObject { r'()F', ); - static final _getValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getValue()` double getValue() { - return _getValue(reference.pointer, _id_getValue as _$jni.JMethodIDPtr) + return _getValue(reference.pointer, _id_getValue as jni$_.JMethodIDPtr) .float; } @@ -103,22 +103,22 @@ class Measure<$T extends _$jni.JObject> extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/MeasureUnit;', ); - static final _getUnit = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getUnit = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public T getUnit()` /// The returned object must be released after use, by calling the [release] method. $T getUnit() { - return _getUnit(reference.pointer, _id_getUnit as _$jni.JMethodIDPtr) + return _getUnit(reference.pointer, _id_getUnit as jni$_.JMethodIDPtr) .object<$T>(T); } @@ -127,16 +127,16 @@ class Measure<$T extends _$jni.JObject> extends _$jni.JObject { r'(Lcom/github/dart_lang/jnigen/MeasureUnit;)F', ); - static final _convertValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _convertValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final float convertValue(T measureUnit)` double convertValue( @@ -144,49 +144,49 @@ class Measure<$T extends _$jni.JObject> extends _$jni.JObject { ) { final _$measureUnit = measureUnit.reference; return _convertValue(reference.pointer, - _id_convertValue as _$jni.JMethodIDPtr, _$measureUnit.pointer) + _id_convertValue as jni$_.JMethodIDPtr, _$measureUnit.pointer) .float; } } -final class $Measure$NullableType<$T extends _$jni.JObject> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $Measure$NullableType<$T extends jni$_.JObject> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $Measure$NullableType( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Measure;'; - @_$jni.internal - @_$core.override - Measure<$T>? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Measure<$T>? fromReference(jni$_.JReference reference) => reference.isNull ? null : Measure<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Measure$NullableType, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Measure$NullableType<$T>) && other is $Measure$NullableType<$T> && @@ -194,43 +194,43 @@ final class $Measure$NullableType<$T extends _$jni.JObject> } } -final class $Measure$Type<$T extends _$jni.JObject> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $Measure$Type<$T extends jni$_.JObject> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $Measure$Type( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Measure;'; - @_$jni.internal - @_$core.override - Measure<$T> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Measure<$T> fromReference(jni$_.JReference reference) => Measure<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => $Measure$NullableType<$T>(T); + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $Measure$NullableType<$T>(T); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Measure$Type, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Measure$Type<$T>) && other is $Measure$Type<$T> && @@ -239,19 +239,19 @@ final class $Measure$Type<$T extends _$jni.JObject> } /// from: `com.github.dart_lang.jnigen.MeasureUnit` -class MeasureUnit extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class MeasureUnit extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal MeasureUnit.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/MeasureUnit'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/MeasureUnit'); /// The type which includes information such as the signature of this class. static const nullableType = $MeasureUnit$NullableType(); @@ -261,23 +261,23 @@ class MeasureUnit extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getSign = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSign = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract java.lang.String getSign()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString getSign() { - return _getSign(reference.pointer, _id_getSign as _$jni.JMethodIDPtr) - .object<_$jni.JString>(const _$jni.JStringType()); + jni$_.JString getSign() { + return _getSign(reference.pointer, _id_getSign as jni$_.JMethodIDPtr) + .object(const jni$_.JStringType()); } static final _id_getCoefficient = _class.instanceMethodId( @@ -285,35 +285,35 @@ class MeasureUnit extends _$jni.JObject { r'()F', ); - static final _getCoefficient = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCoefficient = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract float getCoefficient()` double getCoefficient() { return _getCoefficient( - reference.pointer, _id_getCoefficient as _$jni.JMethodIDPtr) + reference.pointer, _id_getCoefficient as jni$_.JMethodIDPtr) .float; } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -321,51 +321,51 @@ class MeasureUnit extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; if ($d == r'getSign()Ljava/lang/String;') { final $r = _$impls[$p]!.getSign(); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'getCoefficient()F') { final $r = _$impls[$p]!.getCoefficient(); - return _$jni.JFloat($r).reference.toPointer(); + return jni$_.JFloat($r).reference.toPointer(); } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $MeasureUnit $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.MeasureUnit', @@ -380,7 +380,7 @@ class MeasureUnit extends _$jni.JObject { factory MeasureUnit.implement( $MeasureUnit $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return MeasureUnit.fromReference( $i.implementReference(), @@ -390,25 +390,25 @@ class MeasureUnit extends _$jni.JObject { abstract base mixin class $MeasureUnit { factory $MeasureUnit({ - required _$jni.JString Function() getSign, + required jni$_.JString Function() getSign, required double Function() getCoefficient, }) = _$MeasureUnit; - _$jni.JString getSign(); + jni$_.JString getSign(); double getCoefficient(); } final class _$MeasureUnit with $MeasureUnit { _$MeasureUnit({ - required _$jni.JString Function() getSign, + required jni$_.JString Function() getSign, required double Function() getCoefficient, }) : _getSign = getSign, _getCoefficient = getCoefficient; - final _$jni.JString Function() _getSign; + final jni$_.JString Function() _getSign; final double Function() _getCoefficient; - _$jni.JString getSign() { + jni$_.JString getSign() { return _getSign(); } @@ -417,74 +417,74 @@ final class _$MeasureUnit with $MeasureUnit { } } -final class $MeasureUnit$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $MeasureUnit$NullableType extends jni$_.JObjType { + @jni$_.internal const $MeasureUnit$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/MeasureUnit;'; - @_$jni.internal - @_$core.override - MeasureUnit? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + MeasureUnit? fromReference(jni$_.JReference reference) => reference.isNull ? null : MeasureUnit.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MeasureUnit$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MeasureUnit$NullableType) && other is $MeasureUnit$NullableType; } } -final class $MeasureUnit$Type extends _$jni.JObjType { - @_$jni.internal +final class $MeasureUnit$Type extends jni$_.JObjType { + @jni$_.internal const $MeasureUnit$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/MeasureUnit;'; - @_$jni.internal - @_$core.override - MeasureUnit fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MeasureUnit fromReference(jni$_.JReference reference) => MeasureUnit.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $MeasureUnit$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MeasureUnit$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MeasureUnit$Type) && other is $MeasureUnit$Type; @@ -492,41 +492,41 @@ final class $MeasureUnit$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.Nullability$InnerClass` -class Nullability_InnerClass<$T extends _$jni.JObject?, - $U extends _$jni.JObject, $V extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class Nullability_InnerClass<$T extends jni$_.JObject?, + $U extends jni$_.JObject, $V extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal Nullability_InnerClass.fromReference( this.T, this.U, this.V, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T, $U, $V>(T, U, V), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/Nullability$InnerClass'); /// The type which includes information such as the signature of this class. static $Nullability_InnerClass$NullableType<$T, $U, $V> nullableType< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $V extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, - _$jni.JObjType<$V> V, + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $V extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, + jni$_.JObjType<$V> V, ) { return $Nullability_InnerClass$NullableType<$T, $U, $V>( T, @@ -536,12 +536,12 @@ class Nullability_InnerClass<$T extends _$jni.JObject?, } static $Nullability_InnerClass$Type<$T, $U, $V> type< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $V extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, - _$jni.JObjType<$V> V, + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $V extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, + jni$_.JObjType<$V> V, ) { return $Nullability_InnerClass$Type<$T, $U, $V>( T, @@ -554,39 +554,39 @@ class Nullability_InnerClass<$T extends _$jni.JObject?, r'(Lcom/github/dart_lang/jnigen/Nullability;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.Nullability $outerClass)` /// The returned object must be released after use, by calling the [release] method. factory Nullability_InnerClass( Nullability<$T?, $U> $outerClass, { - _$jni.JObjType<$T>? T, - _$jni.JObjType<$U>? U, - required _$jni.JObjType<$V> V, + jni$_.JObjType<$T>? T, + jni$_.JObjType<$U>? U, + required jni$_.JObjType<$V> V, }) { - T ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $Nullability$Type<_$core.dynamic, _$core.dynamic>) + T ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $Nullability$Type) .T, - ]) as _$jni.JObjType<$T>; - U ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $Nullability$Type<_$core.dynamic, _$core.dynamic>) + ]) as jni$_.JObjType<$T>; + U ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $Nullability$Type) .U, - ]) as _$jni.JObjType<$U>; + ]) as jni$_.JObjType<$U>; final _$$outerClass = $outerClass.reference; return Nullability_InnerClass<$T, $U, $V>.fromReference( T, U, V, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$$outerClass.pointer) .reference); } @@ -596,24 +596,24 @@ class Nullability_InnerClass<$T extends _$jni.JObject?, r'(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V', ); - static final _f = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _f = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public final void f(T object, U object1, V object2)` void f( @@ -621,43 +621,43 @@ class Nullability_InnerClass<$T extends _$jni.JObject?, $U object1, $V object2, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; final _$object1 = object1.reference; - final _$object2 = object2?.reference ?? _$jni.jNullReference; - _f(reference.pointer, _id_f as _$jni.JMethodIDPtr, _$object.pointer, + final _$object2 = object2?.reference ?? jni$_.jNullReference; + _f(reference.pointer, _id_f as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer, _$object2.pointer) .check(); } } -final class $Nullability_InnerClass$NullableType<$T extends _$jni.JObject?, - $U extends _$jni.JObject, $V extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $Nullability_InnerClass$NullableType<$T extends jni$_.JObject?, + $U extends jni$_.JObject, $V extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $Nullability_InnerClass$NullableType( this.T, this.U, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Nullability$InnerClass;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override Nullability_InnerClass<$T, $U, $V>? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : Nullability_InnerClass<$T, $U, $V>.fromReference( @@ -666,23 +666,23 @@ final class $Nullability_InnerClass$NullableType<$T extends _$jni.JObject?, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Nullability_InnerClass$NullableType, T, U, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Nullability_InnerClass$NullableType<$T, $U, $V>) && @@ -693,57 +693,57 @@ final class $Nullability_InnerClass$NullableType<$T extends _$jni.JObject?, } } -final class $Nullability_InnerClass$Type<$T extends _$jni.JObject?, - $U extends _$jni.JObject, $V extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $Nullability_InnerClass$Type<$T extends jni$_.JObject?, + $U extends jni$_.JObject, $V extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $Nullability_InnerClass$Type( this.T, this.U, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Nullability$InnerClass;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override Nullability_InnerClass<$T, $U, $V> fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => Nullability_InnerClass<$T, $U, $V>.fromReference( T, U, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $Nullability_InnerClass$NullableType<$T, $U, $V>(T, U, V); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Nullability_InnerClass$Type, T, U, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Nullability_InnerClass$Type<$T, $U, $V>) && other is $Nullability_InnerClass$Type<$T, $U, $V> && @@ -754,34 +754,34 @@ final class $Nullability_InnerClass$Type<$T extends _$jni.JObject?, } /// from: `com.github.dart_lang.jnigen.Nullability` -class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class Nullability<$T extends jni$_.JObject?, $U extends jni$_.JObject> + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal Nullability.fromReference( this.T, this.U, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T, $U>(T, U), super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/Nullability'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/Nullability'); /// The type which includes information such as the signature of this class. static $Nullability$NullableType<$T, $U> - nullableType<$T extends _$jni.JObject?, $U extends _$jni.JObject>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, + nullableType<$T extends jni$_.JObject?, $U extends jni$_.JObject>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, ) { return $Nullability$NullableType<$T, $U>( T, @@ -790,9 +790,9 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> } static $Nullability$Type<$T, $U> - type<$T extends _$jni.JObject?, $U extends _$jni.JObject>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, + type<$T extends jni$_.JObject?, $U extends jni$_.JObject>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, ) { return $Nullability$Type<$T, $U>( T, @@ -804,24 +804,24 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (T object, U object1, U object2)` /// The returned object must be released after use, by calling the [release] method. @@ -829,19 +829,19 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> $T object, $U object1, $U? object2, { - required _$jni.JObjType<$T> T, - _$jni.JObjType<$U>? U, + required jni$_.JObjType<$T> T, + jni$_.JObjType<$U>? U, }) { - U ??= _$jni.lowestCommonSuperType([ + U ??= jni$_.lowestCommonSuperType([ object1.$type, - ]) as _$jni.JObjType<$U>; - final _$object = object?.reference ?? _$jni.jNullReference; + ]) as jni$_.JObjType<$U>; + final _$object = object?.reference ?? jni$_.jNullReference; final _$object1 = object1.reference; - final _$object2 = object2?.reference ?? _$jni.jNullReference; + final _$object2 = object2?.reference ?? jni$_.jNullReference; return Nullability<$T, $U>.fromReference( T, U, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer, _$object2.pointer) .reference); } @@ -851,22 +851,22 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'()Ljava/lang/Object;', ); - static final _getT = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getT = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final T getT()` /// The returned object must be released after use, by calling the [release] method. $T getT() { - return _getT(reference.pointer, _id_getT as _$jni.JMethodIDPtr) + return _getT(reference.pointer, _id_getT as jni$_.JMethodIDPtr) .object<$T>(T); } @@ -875,22 +875,22 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'()Ljava/lang/Object;', ); - static final _getU = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getU = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final U getU()` /// The returned object must be released after use, by calling the [release] method. $U getU() { - return _getU(reference.pointer, _id_getU as _$jni.JMethodIDPtr) + return _getU(reference.pointer, _id_getU as jni$_.JMethodIDPtr) .object<$U>(U); } @@ -899,23 +899,23 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'()Ljava/lang/Object;', ); - static final _getNullableU = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNullableU = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final U getNullableU()` /// The returned object must be released after use, by calling the [release] method. $U? getNullableU() { return _getNullableU( - reference.pointer, _id_getNullableU as _$jni.JMethodIDPtr) + reference.pointer, _id_getNullableU as jni$_.JMethodIDPtr) .object<$U?>(U.nullableType); } @@ -924,23 +924,23 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;)V', ); - static final _setNullableU = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setNullableU = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final void setNullableU(U object)` void setNullableU( $U? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - _setNullableU(reference.pointer, _id_setNullableU as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + _setNullableU(reference.pointer, _id_setNullableU as jni$_.JMethodIDPtr, _$object.pointer) .check(); } @@ -950,23 +950,23 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'()Ljava/lang/String;', ); - static final _hello = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _hello = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final java.lang.String hello()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString hello() { - return _hello(reference.pointer, _id_hello as _$jni.JMethodIDPtr) - .object<_$jni.JString>(const _$jni.JStringType()); + jni$_.JString hello() { + return _hello(reference.pointer, _id_hello as jni$_.JMethodIDPtr) + .object(const jni$_.JStringType()); } static final _id_nullableHello = _class.instanceMethodId( @@ -974,24 +974,24 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Z)Ljava/lang/String;', ); - static final _nullableHello = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableHello = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public final java.lang.String nullableHello(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? nullableHello( + jni$_.JString? nullableHello( bool z, ) { return _nullableHello(reference.pointer, - _id_nullableHello as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _id_nullableHello as jni$_.JMethodIDPtr, z ? 1 : 0) + .object(const jni$_.JStringNullableType()); } static final _id_methodGenericEcho = _class.instanceMethodId( @@ -999,29 +999,29 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _methodGenericEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final V methodGenericEcho(V object)` /// The returned object must be released after use, by calling the [release] method. - $V methodGenericEcho<$V extends _$jni.JObject>( + $V methodGenericEcho<$V extends jni$_.JObject>( $V object, { - _$jni.JObjType<$V>? V, + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ + V ??= jni$_.lowestCommonSuperType([ object.$type, - ]) as _$jni.JObjType<$V>; + ]) as jni$_.JObjType<$V>; final _$object = object.reference; return _methodGenericEcho(reference.pointer, - _id_methodGenericEcho as _$jni.JMethodIDPtr, _$object.pointer) + _id_methodGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$V>(V); } @@ -1030,27 +1030,27 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _methodGenericNullableEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericNullableEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final V methodGenericNullableEcho(V object)` /// The returned object must be released after use, by calling the [release] method. - $V methodGenericNullableEcho<$V extends _$jni.JObject?>( + $V methodGenericNullableEcho<$V extends jni$_.JObject?>( $V object, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _methodGenericNullableEcho( reference.pointer, - _id_methodGenericNullableEcho as _$jni.JMethodIDPtr, + _id_methodGenericNullableEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$V>(V); } @@ -1060,16 +1060,16 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _classGenericEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _classGenericEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final U classGenericEcho(U object)` /// The returned object must be released after use, by calling the [release] method. @@ -1078,7 +1078,7 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> ) { final _$object = object.reference; return _classGenericEcho(reference.pointer, - _id_classGenericEcho as _$jni.JMethodIDPtr, _$object.pointer) + _id_classGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$U>(U); } @@ -1087,26 +1087,26 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _classGenericNullableEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _classGenericNullableEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final T classGenericNullableEcho(T object)` /// The returned object must be released after use, by calling the [release] method. $T classGenericNullableEcho( $T object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _classGenericNullableEcho( reference.pointer, - _id_classGenericNullableEcho as _$jni.JMethodIDPtr, + _id_classGenericNullableEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$T>(T); } @@ -1116,26 +1116,26 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/util/List;)Ljava/lang/String;', ); - static final _firstOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.lang.String firstOf(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString firstOf( - _$jni.JList<_$jni.JString> list, + jni$_.JString firstOf( + jni$_.JList list, ) { final _$list = list.reference; - return _firstOf(reference.pointer, _id_firstOf as _$jni.JMethodIDPtr, + return _firstOf(reference.pointer, _id_firstOf as jni$_.JMethodIDPtr, _$list.pointer) - .object<_$jni.JString>(const _$jni.JStringType()); + .object(const jni$_.JStringType()); } static final _id_firstOfNullable = _class.instanceMethodId( @@ -1143,26 +1143,26 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/util/List;)Ljava/lang/String;', ); - static final _firstOfNullable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstOfNullable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.lang.String firstOfNullable(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? firstOfNullable( - _$jni.JList<_$jni.JString?> list, + jni$_.JString? firstOfNullable( + jni$_.JList list, ) { final _$list = list.reference; return _firstOfNullable(reference.pointer, - _id_firstOfNullable as _$jni.JMethodIDPtr, _$list.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _id_firstOfNullable as jni$_.JMethodIDPtr, _$list.pointer) + .object(const jni$_.JStringNullableType()); } static final _id_classGenericFirstOf = _class.instanceMethodId( @@ -1170,25 +1170,25 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/util/List;)Ljava/lang/Object;', ); - static final _classGenericFirstOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _classGenericFirstOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final U classGenericFirstOf(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. $U classGenericFirstOf( - _$jni.JList<$U> list, + jni$_.JList<$U> list, ) { final _$list = list.reference; return _classGenericFirstOf(reference.pointer, - _id_classGenericFirstOf as _$jni.JMethodIDPtr, _$list.pointer) + _id_classGenericFirstOf as jni$_.JMethodIDPtr, _$list.pointer) .object<$U>(U); } @@ -1198,26 +1198,26 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> ); static final _classGenericFirstOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final T classGenericFirstOfNullable(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. $T classGenericFirstOfNullable( - _$jni.JList<$T> list, + jni$_.JList<$T> list, ) { final _$list = list.reference; return _classGenericFirstOfNullable( reference.pointer, - _id_classGenericFirstOfNullable as _$jni.JMethodIDPtr, + _id_classGenericFirstOfNullable as jni$_.JMethodIDPtr, _$list.pointer) .object<$T>(T); } @@ -1227,29 +1227,29 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/util/List;)Ljava/lang/Object;', ); - static final _methodGenericFirstOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericFirstOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final V methodGenericFirstOf(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - $V methodGenericFirstOf<$V extends _$jni.JObject>( - _$jni.JList<$V> list, { - _$jni.JObjType<$V>? V, + $V methodGenericFirstOf<$V extends jni$_.JObject>( + jni$_.JList<$V> list, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (list.$type as _$jni.JListType<_$core.dynamic>).E, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (list.$type as jni$_.JListType).E, + ]) as jni$_.JObjType<$V>; final _$list = list.reference; return _methodGenericFirstOf(reference.pointer, - _id_methodGenericFirstOf as _$jni.JMethodIDPtr, _$list.pointer) + _id_methodGenericFirstOf as jni$_.JMethodIDPtr, _$list.pointer) .object<$V>(V); } @@ -1259,30 +1259,30 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> ); static final _methodGenericFirstOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final V methodGenericFirstOfNullable(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - $V methodGenericFirstOfNullable<$V extends _$jni.JObject?>( - _$jni.JList<$V> list, { - _$jni.JObjType<$V>? V, + $V methodGenericFirstOfNullable<$V extends jni$_.JObject?>( + jni$_.JList<$V> list, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (list.$type as _$jni.JListType<_$core.dynamic>).E, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (list.$type as jni$_.JListType).E, + ]) as jni$_.JObjType<$V>; final _$list = list.reference; return _methodGenericFirstOfNullable( reference.pointer, - _id_methodGenericFirstOfNullable as _$jni.JMethodIDPtr, + _id_methodGenericFirstOfNullable as jni$_.JMethodIDPtr, _$list.pointer) .object<$V>(V); } @@ -1292,27 +1292,27 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/String;)Ljava/util/List;', ); - static final _stringListOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _stringListOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.util.List stringListOf(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JString> stringListOf( - _$jni.JString string, + jni$_.JList stringListOf( + jni$_.JString string, ) { final _$string = string.reference; return _stringListOf(reference.pointer, - _id_stringListOf as _$jni.JMethodIDPtr, _$string.pointer) - .object<_$jni.JList<_$jni.JString>>( - const _$jni.JListType<_$jni.JString>(_$jni.JStringType())); + _id_stringListOf as jni$_.JMethodIDPtr, _$string.pointer) + .object>( + const jni$_.JListType(jni$_.JStringType())); } static final _id_nullableListOf = _class.instanceMethodId( @@ -1320,27 +1320,27 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/String;)Ljava/util/List;', ); - static final _nullableListOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _nullableListOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.util.List nullableListOf(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JString?> nullableListOf( - _$jni.JString? string, + jni$_.JList nullableListOf( + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _nullableListOf(reference.pointer, - _id_nullableListOf as _$jni.JMethodIDPtr, _$string.pointer) - .object<_$jni.JList<_$jni.JString?>>( - const _$jni.JListType<_$jni.JString?>(_$jni.JStringNullableType())); + _id_nullableListOf as jni$_.JMethodIDPtr, _$string.pointer) + .object>( + const jni$_.JListType(jni$_.JStringNullableType())); } static final _id_classGenericListOf = _class.instanceMethodId( @@ -1348,26 +1348,26 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;)Ljava/util/List;', ); - static final _classGenericListOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _classGenericListOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.util.List classGenericListOf(U object)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$U> classGenericListOf( + jni$_.JList<$U> classGenericListOf( $U object, ) { final _$object = object.reference; return _classGenericListOf(reference.pointer, - _id_classGenericListOf as _$jni.JMethodIDPtr, _$object.pointer) - .object<_$jni.JList<$U>>(_$jni.JListType<$U>(U)); + _id_classGenericListOf as jni$_.JMethodIDPtr, _$object.pointer) + .object>(jni$_.JListType<$U>(U)); } static final _id_classGenericNullableListOf = _class.instanceMethodId( @@ -1376,28 +1376,28 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> ); static final _classGenericNullableListOf = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.util.List classGenericNullableListOf(T object)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$T> classGenericNullableListOf( + jni$_.JList<$T> classGenericNullableListOf( $T object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _classGenericNullableListOf( reference.pointer, - _id_classGenericNullableListOf as _$jni.JMethodIDPtr, + _id_classGenericNullableListOf as jni$_.JMethodIDPtr, _$object.pointer) - .object<_$jni.JList<$T>>(_$jni.JListType<$T>(T)); + .object>(jni$_.JListType<$T>(T)); } static final _id_methodGenericListOf = _class.instanceMethodId( @@ -1405,30 +1405,30 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> r'(Ljava/lang/Object;)Ljava/util/List;', ); - static final _methodGenericListOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericListOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.util.List methodGenericListOf(V object)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$V> methodGenericListOf<$V extends _$jni.JObject>( + jni$_.JList<$V> methodGenericListOf<$V extends jni$_.JObject>( $V object, { - _$jni.JObjType<$V>? V, + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ + V ??= jni$_.lowestCommonSuperType([ object.$type, - ]) as _$jni.JObjType<$V>; + ]) as jni$_.JObjType<$V>; final _$object = object.reference; return _methodGenericListOf(reference.pointer, - _id_methodGenericListOf as _$jni.JMethodIDPtr, _$object.pointer) - .object<_$jni.JList<$V>>(_$jni.JListType<$V>(V)); + _id_methodGenericListOf as jni$_.JMethodIDPtr, _$object.pointer) + .object>(jni$_.JListType<$V>(V)); } static final _id_methodGenericNullableListOf = _class.instanceMethodId( @@ -1437,53 +1437,53 @@ class Nullability<$T extends _$jni.JObject?, $U extends _$jni.JObject> ); static final _methodGenericNullableListOf = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.util.List methodGenericNullableListOf(V object)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$V> methodGenericNullableListOf<$V extends _$jni.JObject?>( + jni$_.JList<$V> methodGenericNullableListOf<$V extends jni$_.JObject?>( $V object, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _methodGenericNullableListOf( reference.pointer, - _id_methodGenericNullableListOf as _$jni.JMethodIDPtr, + _id_methodGenericNullableListOf as jni$_.JMethodIDPtr, _$object.pointer) - .object<_$jni.JList<$V>>(_$jni.JListType<$V>(V)); + .object>(jni$_.JListType<$V>(V)); } } -final class $Nullability$NullableType<$T extends _$jni.JObject?, - $U extends _$jni.JObject> extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $Nullability$NullableType<$T extends jni$_.JObject?, + $U extends jni$_.JObject> extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal const $Nullability$NullableType( this.T, this.U, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Nullability;'; - @_$jni.internal - @_$core.override - Nullability<$T, $U>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Nullability<$T, $U>? fromReference(jni$_.JReference reference) => reference.isNull ? null : Nullability<$T, $U>.fromReference( @@ -1491,22 +1491,22 @@ final class $Nullability$NullableType<$T extends _$jni.JObject?, U, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Nullability$NullableType, T, U); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Nullability$NullableType<$T, $U>) && other is $Nullability$NullableType<$T, $U> && @@ -1515,49 +1515,49 @@ final class $Nullability$NullableType<$T extends _$jni.JObject?, } } -final class $Nullability$Type<$T extends _$jni.JObject?, - $U extends _$jni.JObject> extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $Nullability$Type<$T extends jni$_.JObject?, + $U extends jni$_.JObject> extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal const $Nullability$Type( this.T, this.U, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Nullability;'; - @_$jni.internal - @_$core.override - Nullability<$T, $U> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Nullability<$T, $U> fromReference(jni$_.JReference reference) => Nullability<$T, $U>.fromReference( T, U, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $Nullability$NullableType<$T, $U>(T, U); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Nullability$Type, T, U); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Nullability$Type<$T, $U>) && other is $Nullability$Type<$T, $U> && @@ -1568,18 +1568,18 @@ final class $Nullability$Type<$T extends _$jni.JObject?, /// from: `com.github.dart_lang.jnigen.Speed` class Speed extends Measure { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Speed.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(const $SpeedUnit$Type(), reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/Speed'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/Speed'); /// The type which includes information such as the signature of this class. static const nullableType = $Speed$NullableType(); @@ -1588,19 +1588,19 @@ class Speed extends Measure { r'(FLcom/github/dart_lang/jnigen/SpeedUnit;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Double, - _$jni.Pointer<_$jni.Void> + jni$_.Double, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, double, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, double, jni$_.Pointer)>(); /// from: `public void (float f, com.github.dart_lang.jnigen.SpeedUnit speedUnit)` /// The returned object must be released after use, by calling the [release] method. @@ -1610,7 +1610,7 @@ class Speed extends Measure { ) { final _$speedUnit = speedUnit.reference; return Speed.fromReference(_new$(_class.reference.pointer, - _id_new$ as _$jni.JMethodIDPtr, f, _$speedUnit.pointer) + _id_new$ as jni$_.JMethodIDPtr, f, _$speedUnit.pointer) .reference); } @@ -1619,21 +1619,21 @@ class Speed extends Measure { r'()F', ); - static final _getValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getValue()` double getValue() { - return _getValue(reference.pointer, _id_getValue as _$jni.JMethodIDPtr) + return _getValue(reference.pointer, _id_getValue as jni$_.JMethodIDPtr) .float; } @@ -1642,22 +1642,22 @@ class Speed extends Measure { r'()Lcom/github/dart_lang/jnigen/SpeedUnit;', ); - static final _getUnit$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getUnit$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.github.dart_lang.jnigen.SpeedUnit getUnit()` /// The returned object must be released after use, by calling the [release] method. SpeedUnit getUnit$1() { - return _getUnit$1(reference.pointer, _id_getUnit$1 as _$jni.JMethodIDPtr) + return _getUnit$1(reference.pointer, _id_getUnit$1 as jni$_.JMethodIDPtr) .object(const $SpeedUnit$Type()); } @@ -1666,23 +1666,23 @@ class Speed extends Measure { r'()Ljava/lang/String;', ); - static final _toString$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _toString$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String toString()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString toString$1() { - return _toString$1(reference.pointer, _id_toString$1 as _$jni.JMethodIDPtr) - .object<_$jni.JString>(const _$jni.JStringType()); + jni$_.JString toString$1() { + return _toString$1(reference.pointer, _id_toString$1 as jni$_.JMethodIDPtr) + .object(const jni$_.JStringType()); } static final _id_component1 = _class.instanceMethodId( @@ -1690,21 +1690,21 @@ class Speed extends Measure { r'()F', ); - static final _component1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _component1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final float component1()` double component1() { - return _component1(reference.pointer, _id_component1 as _$jni.JMethodIDPtr) + return _component1(reference.pointer, _id_component1 as jni$_.JMethodIDPtr) .float; } @@ -1713,22 +1713,22 @@ class Speed extends Measure { r'()Lcom/github/dart_lang/jnigen/SpeedUnit;', ); - static final _component2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _component2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final com.github.dart_lang.jnigen.SpeedUnit component2()` /// The returned object must be released after use, by calling the [release] method. SpeedUnit component2() { - return _component2(reference.pointer, _id_component2 as _$jni.JMethodIDPtr) + return _component2(reference.pointer, _id_component2 as jni$_.JMethodIDPtr) .object(const $SpeedUnit$Type()); } @@ -1737,19 +1737,19 @@ class Speed extends Measure { r'(FLcom/github/dart_lang/jnigen/SpeedUnit;)Lcom/github/dart_lang/jnigen/Speed;', ); - static final _copy = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _copy = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Double, - _$jni.Pointer<_$jni.Void> + jni$_.Double, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, double, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, double, jni$_.Pointer)>(); /// from: `public final com.github.dart_lang.jnigen.Speed copy(float f, com.github.dart_lang.jnigen.SpeedUnit speedUnit)` /// The returned object must be released after use, by calling the [release] method. @@ -1758,7 +1758,7 @@ class Speed extends Measure { SpeedUnit speedUnit, ) { final _$speedUnit = speedUnit.reference; - return _copy(reference.pointer, _id_copy as _$jni.JMethodIDPtr, f, + return _copy(reference.pointer, _id_copy as jni$_.JMethodIDPtr, f, _$speedUnit.pointer) .object(const $Speed$Type()); } @@ -1768,21 +1768,21 @@ class Speed extends Measure { r'()I', ); - static final _hashCode$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _hashCode$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int hashCode()` int hashCode$1() { - return _hashCode$1(reference.pointer, _id_hashCode$1 as _$jni.JMethodIDPtr) + return _hashCode$1(reference.pointer, _id_hashCode$1 as jni$_.JMethodIDPtr) .integer; } @@ -1791,115 +1791,115 @@ class Speed extends Measure { r'(Ljava/lang/Object;)Z', ); - static final _equals = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _equals = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public boolean equals(java.lang.Object object)` bool equals( - _$jni.JObject? object, + jni$_.JObject? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - return _equals(reference.pointer, _id_equals as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + return _equals(reference.pointer, _id_equals as jni$_.JMethodIDPtr, _$object.pointer) .boolean; } } -final class $Speed$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Speed$NullableType extends jni$_.JObjType { + @jni$_.internal const $Speed$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Speed;'; - @_$jni.internal - @_$core.override - Speed? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Speed? fromReference(jni$_.JReference reference) => reference.isNull ? null : Speed.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $Measure$Type($SpeedUnit$Type()); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($Speed$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Speed$NullableType) && other is $Speed$NullableType; } } -final class $Speed$Type extends _$jni.JObjType { - @_$jni.internal +final class $Speed$Type extends jni$_.JObjType { + @jni$_.internal const $Speed$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/Speed;'; - @_$jni.internal - @_$core.override - Speed fromReference(_$jni.JReference reference) => Speed.fromReference( + @jni$_.internal + @core$_.override + Speed fromReference(jni$_.JReference reference) => Speed.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $Measure$Type($SpeedUnit$Type()); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $Speed$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Speed$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($Speed$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Speed$Type) && other is $Speed$Type; } } /// from: `com.github.dart_lang.jnigen.SpeedUnit` -class SpeedUnit extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class SpeedUnit extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal SpeedUnit.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/SpeedUnit'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/SpeedUnit'); /// The type which includes information such as the signature of this class. static const nullableType = $SpeedUnit$NullableType(); @@ -1929,23 +1929,23 @@ class SpeedUnit extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getSign = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSign = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getSign()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString getSign() { - return _getSign(reference.pointer, _id_getSign as _$jni.JMethodIDPtr) - .object<_$jni.JString>(const _$jni.JStringType()); + jni$_.JString getSign() { + return _getSign(reference.pointer, _id_getSign as jni$_.JMethodIDPtr) + .object(const jni$_.JStringType()); } static final _id_getCoefficient = _class.instanceMethodId( @@ -1953,22 +1953,22 @@ class SpeedUnit extends _$jni.JObject { r'()F', ); - static final _getCoefficient = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCoefficient = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallFloatMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public float getCoefficient()` double getCoefficient() { return _getCoefficient( - reference.pointer, _id_getCoefficient as _$jni.JMethodIDPtr) + reference.pointer, _id_getCoefficient as jni$_.JMethodIDPtr) .float; } @@ -1977,24 +1977,24 @@ class SpeedUnit extends _$jni.JObject { r'()[Lcom/github/dart_lang/jnigen/SpeedUnit;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.github.dart_lang.jnigen.SpeedUnit[] values()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray? values() { - return _values(_class.reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JArray?>( - const _$jni.JArrayNullableType( + static jni$_.JArray? values() { + return _values(_class.reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( $SpeedUnit$NullableType())); } @@ -2003,116 +2003,116 @@ class SpeedUnit extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/github/dart_lang/jnigen/SpeedUnit;', ); - static final _valueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _valueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.SpeedUnit valueOf(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. static SpeedUnit? valueOf( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - return _valueOf(_class.reference.pointer, _id_valueOf as _$jni.JMethodIDPtr, + final _$string = string?.reference ?? jni$_.jNullReference; + return _valueOf(_class.reference.pointer, _id_valueOf as jni$_.JMethodIDPtr, _$string.pointer) .object(const $SpeedUnit$NullableType()); } } -final class $SpeedUnit$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $SpeedUnit$NullableType extends jni$_.JObjType { + @jni$_.internal const $SpeedUnit$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/SpeedUnit;'; - @_$jni.internal - @_$core.override - SpeedUnit? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + SpeedUnit? fromReference(jni$_.JReference reference) => reference.isNull ? null : SpeedUnit.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($SpeedUnit$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($SpeedUnit$NullableType) && other is $SpeedUnit$NullableType; } } -final class $SpeedUnit$Type extends _$jni.JObjType { - @_$jni.internal +final class $SpeedUnit$Type extends jni$_.JObjType { + @jni$_.internal const $SpeedUnit$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/SpeedUnit;'; - @_$jni.internal - @_$core.override - SpeedUnit fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + SpeedUnit fromReference(jni$_.JReference reference) => SpeedUnit.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $SpeedUnit$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($SpeedUnit$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($SpeedUnit$Type) && other is $SpeedUnit$Type; } } /// from: `com.github.dart_lang.jnigen.SuspendFun` -class SuspendFun extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class SuspendFun extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal SuspendFun.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/SuspendFun'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/SuspendFun'); /// The type which includes information such as the signature of this class. static const nullableType = $SuspendFun$NullableType(); @@ -2121,23 +2121,23 @@ class SuspendFun extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory SuspendFun() { return SuspendFun.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -2146,36 +2146,36 @@ class SuspendFun extends _$jni.JObject { r'(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;', ); - static final _sayHello = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _sayHello = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public final java.lang.Object sayHello(kotlin.coroutines.Continuation continuation)` /// The returned object must be released after use, by calling the [release] method. - _$core.Future<_$jni.JString> sayHello() async { - final $p = _$jni.ReceivePort(); - final _$continuation = _$jni.ProtectedJniExtensions.newPortContinuation($p); + core$_.Future sayHello() async { + final $p = jni$_.ReceivePort(); + final _$continuation = jni$_.ProtectedJniExtensions.newPortContinuation($p); - _sayHello(reference.pointer, _id_sayHello as _$jni.JMethodIDPtr, + _sayHello(reference.pointer, _id_sayHello as jni$_.JMethodIDPtr, _$continuation.pointer) - .object<_$jni.JObject>(const _$jni.JObjectType()); + .object(const jni$_.JObjectType()); _$continuation.release(); final $o = - _$jni.JGlobalReference(_$jni.JObjectPtr.fromAddress(await $p.first)); - final $k = const _$jni.JStringType().jClass.reference; - if (!_$jni.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { + jni$_.JGlobalReference(jni$_.JObjectPtr.fromAddress(await $p.first)); + final $k = const jni$_.JStringType().jClass.reference; + if (!jni$_.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { $k.release(); throw 'Failed'; } $k.release(); - return const _$jni.JStringType().fromReference($o); + return const jni$_.JStringType().fromReference($o); } static final _id_sayHello$1 = _class.instanceMethodId( @@ -2183,144 +2183,144 @@ class SuspendFun extends _$jni.JObject { r'(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;', ); - static final _sayHello$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _sayHello$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public final java.lang.Object sayHello(java.lang.String string, kotlin.coroutines.Continuation continuation)` /// The returned object must be released after use, by calling the [release] method. - _$core.Future<_$jni.JString> sayHello$1( - _$jni.JString? string, + core$_.Future sayHello$1( + jni$_.JString? string, ) async { - final $p = _$jni.ReceivePort(); - final _$continuation = _$jni.ProtectedJniExtensions.newPortContinuation($p); - final _$string = string?.reference ?? _$jni.jNullReference; - _sayHello$1(reference.pointer, _id_sayHello$1 as _$jni.JMethodIDPtr, + final $p = jni$_.ReceivePort(); + final _$continuation = jni$_.ProtectedJniExtensions.newPortContinuation($p); + final _$string = string?.reference ?? jni$_.jNullReference; + _sayHello$1(reference.pointer, _id_sayHello$1 as jni$_.JMethodIDPtr, _$string.pointer, _$continuation.pointer) - .object<_$jni.JObject>(const _$jni.JObjectType()); + .object(const jni$_.JObjectType()); _$continuation.release(); final $o = - _$jni.JGlobalReference(_$jni.JObjectPtr.fromAddress(await $p.first)); - final $k = const _$jni.JStringType().jClass.reference; - if (!_$jni.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { + jni$_.JGlobalReference(jni$_.JObjectPtr.fromAddress(await $p.first)); + final $k = const jni$_.JStringType().jClass.reference; + if (!jni$_.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { $k.release(); throw 'Failed'; } $k.release(); - return const _$jni.JStringType().fromReference($o); + return const jni$_.JStringType().fromReference($o); } } -final class $SuspendFun$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $SuspendFun$NullableType extends jni$_.JObjType { + @jni$_.internal const $SuspendFun$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/SuspendFun;'; - @_$jni.internal - @_$core.override - SuspendFun? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + SuspendFun? fromReference(jni$_.JReference reference) => reference.isNull ? null : SuspendFun.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($SuspendFun$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($SuspendFun$NullableType) && other is $SuspendFun$NullableType; } } -final class $SuspendFun$Type extends _$jni.JObjType { - @_$jni.internal +final class $SuspendFun$Type extends jni$_.JObjType { + @jni$_.internal const $SuspendFun$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/SuspendFun;'; - @_$jni.internal - @_$core.override - SuspendFun fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + SuspendFun fromReference(jni$_.JReference reference) => SuspendFun.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $SuspendFun$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($SuspendFun$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($SuspendFun$Type) && other is $SuspendFun$Type; } } final _TopLevelKtClass = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/TopLevelKt'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/TopLevelKt'); final _id_getTopLevelField = _TopLevelKtClass.staticMethodId( r'getTopLevelField', r'()I', ); -final _getTopLevelField = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, +final _getTopLevelField = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public final int getTopLevelField()` int getTopLevelField() { return _getTopLevelField(_TopLevelKtClass.reference.pointer, - _id_getTopLevelField as _$jni.JMethodIDPtr) + _id_getTopLevelField as jni$_.JMethodIDPtr) .integer; } @@ -2329,21 +2329,21 @@ final _id_setTopLevelField = _TopLevelKtClass.staticMethodId( r'(I)V', ); -final _setTopLevelField = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( +final _setTopLevelField = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `static public final void setTopLevelField(int i)` void setTopLevelField( int i, ) { _setTopLevelField(_TopLevelKtClass.reference.pointer, - _id_setTopLevelField as _$jni.JMethodIDPtr, i) + _id_setTopLevelField as jni$_.JMethodIDPtr, i) .check(); } @@ -2352,22 +2352,22 @@ final _id_topLevel = _TopLevelKtClass.staticMethodId( r'()I', ); -final _topLevel = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, +final _topLevel = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public final int topLevel()` int topLevel() { return _topLevel(_TopLevelKtClass.reference.pointer, - _id_topLevel as _$jni.JMethodIDPtr) + _id_topLevel as jni$_.JMethodIDPtr) .integer; } @@ -2376,16 +2376,16 @@ final _id_topLevelSum = _TopLevelKtClass.staticMethodId( r'(II)I', ); -final _topLevelSum = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32, _$jni.Int32)>)>>( +final _topLevelSum = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32, jni$_.Int32)>)>>( 'globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int, int)>(); /// from: `static public final int topLevelSum(int i, int i1)` int topLevelSum( @@ -2393,6 +2393,6 @@ int topLevelSum( int i1, ) { return _topLevelSum(_TopLevelKtClass.reference.pointer, - _id_topLevelSum as _$jni.JMethodIDPtr, i, i1) + _id_topLevelSum as jni$_.JMethodIDPtr, i, i1) .integer; } diff --git a/pkgs/jnigen/test/package_resolver_test.dart b/pkgs/jnigen/test/package_resolver_test.dart index a29e04362..59595522e 100644 --- a/pkgs/jnigen/test/package_resolver_test.dart +++ b/pkgs/jnigen/test/package_resolver_test.dart @@ -43,23 +43,24 @@ void main() async { final tests = [ // Absolute imports resolved using import map - ResolverTest('android.os.Process', 'package:android/os.dart', 'process_.'), + ResolverTest( + 'android.os.Process', 'package:android/os.dart', r'process$_.'), ResolverTest('org.apache.pdfbox.pdmodel.PDDocument', - 'package:pdfbox/pdfbox.dart', 'pddocument_.'), + 'package:pdfbox/pdfbox.dart', r'pddocument$_.'), // Relative imports // inner package - ResolverTest('a.b.c.D', 'c/D.dart', 'd_.'), + ResolverTest('a.b.c.D', 'c/D.dart', r'd$_.'), // inner package, deeper - ResolverTest('a.b.c.d.E', 'c/d/E.dart', 'e_.'), + ResolverTest('a.b.c.d.E', 'c/d/E.dart', r'e$_.'), // parent package - ResolverTest('a.X', '../X.dart', 'x_.'), + ResolverTest('a.X', '../X.dart', r'x$_.'), // unrelated package in same translation unit - ResolverTest('e.f.G', '../../e/f/G.dart', 'g_.'), - ResolverTest('e.F', '../../e/F.dart', 'f_.'), + ResolverTest('e.f.G', '../../e/f/G.dart', r'g$_.'), + ResolverTest('e.F', '../../e/F.dart', r'f$_.'), // neighbour package - ResolverTest('a.g.Y', '../g/Y.dart', 'y_.'), + ResolverTest('a.g.Y', '../g/Y.dart', r'y$_.'), // inner package of a neighbour package - ResolverTest('a.m.n.P', '../m/n/P.dart', 'p_.'), + ResolverTest('a.m.n.P', '../m/n/P.dart', r'p$_.'), ]; for (var testCase in tests) { diff --git a/pkgs/jnigen/test/simple_package_test/bindings/simple_package.dart b/pkgs/jnigen/test/simple_package_test/bindings/simple_package.dart index 25783ec6d..80aa9e5a3 100644 --- a/pkgs/jnigen/test/simple_package_test/bindings/simple_package.dart +++ b/pkgs/jnigen/test/simple_package_test/bindings/simple_package.dart @@ -34,25 +34,25 @@ // ignore_for_file: use_super_parameters import 'dart:core' show Object, String, bool, double, int; -import 'dart:core' as _$core; +import 'dart:core' as core$_; -import 'package:jni/_internal.dart' as _$jni; -import 'package:jni/jni.dart' as _$jni; +import 'package:jni/_internal.dart' as jni$_; +import 'package:jni/jni.dart' as jni$_; /// from: `com.github.dart_lang.jnigen.simple_package.Color` -class Color extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Color extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Color.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/simple_package/Color'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/simple_package/Color'); /// The type which includes information such as the signature of this class. static const nullableType = $Color$NullableType(); @@ -117,24 +117,24 @@ class Color extends _$jni.JObject { r'()[Lcom/github/dart_lang/jnigen/simple_package/Color;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.github.dart_lang.jnigen.simple_package.Color[] values()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray? values() { - return _values(_class.reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JArray?>( - const _$jni.JArrayNullableType($Color$NullableType())); + static jni$_.JArray? values() { + return _values(_class.reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType($Color$NullableType())); } static final _id_valueOf = _class.staticMethodId( @@ -142,113 +142,113 @@ class Color extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/github/dart_lang/jnigen/simple_package/Color;', ); - static final _valueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _valueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.simple_package.Color valueOf(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. static Color? valueOf( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - return _valueOf(_class.reference.pointer, _id_valueOf as _$jni.JMethodIDPtr, + final _$string = string?.reference ?? jni$_.jNullReference; + return _valueOf(_class.reference.pointer, _id_valueOf as jni$_.JMethodIDPtr, _$string.pointer) .object(const $Color$NullableType()); } } -final class $Color$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Color$NullableType extends jni$_.JObjType { + @jni$_.internal const $Color$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Color;'; - @_$jni.internal - @_$core.override - Color? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Color? fromReference(jni$_.JReference reference) => reference.isNull ? null : Color.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Color$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Color$NullableType) && other is $Color$NullableType; } } -final class $Color$Type extends _$jni.JObjType { - @_$jni.internal +final class $Color$Type extends jni$_.JObjType { + @jni$_.internal const $Color$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Color;'; - @_$jni.internal - @_$core.override - Color fromReference(_$jni.JReference reference) => Color.fromReference( + @jni$_.internal + @core$_.override + Color fromReference(jni$_.JReference reference) => Color.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $Color$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Color$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Color$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Color$Type) && other is $Color$Type; } } /// from: `com.github.dart_lang.jnigen.simple_package.Example$Nested$NestedTwice` -class Example_Nested_NestedTwice extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Example_Nested_NestedTwice extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Example_Nested_NestedTwice.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/simple_package/Example$Nested$NestedTwice'); /// The type which includes information such as the signature of this class. @@ -260,71 +260,71 @@ class Example_Nested_NestedTwice extends _$jni.JObject { ); /// from: `static public int ZERO` - static int get ZERO => _id_ZERO.get(_class, const _$jni.jintType()); + static int get ZERO => _id_ZERO.get(_class, const jni$_.jintType()); /// from: `static public int ZERO` static set ZERO(int value) => - _id_ZERO.set(_class, const _$jni.jintType(), value); + _id_ZERO.set(_class, const jni$_.jintType(), value); static final _id_new$ = _class.constructorId( r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Example_Nested_NestedTwice() { return Example_Nested_NestedTwice.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } final class $Example_Nested_NestedTwice$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Example_Nested_NestedTwice$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example$Nested$NestedTwice;'; - @_$jni.internal - @_$core.override - Example_Nested_NestedTwice? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Example_Nested_NestedTwice? fromReference(jni$_.JReference reference) => reference.isNull ? null : Example_Nested_NestedTwice.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example_Nested_NestedTwice$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example_Nested_NestedTwice$NullableType) && other is $Example_Nested_NestedTwice$NullableType; @@ -332,38 +332,38 @@ final class $Example_Nested_NestedTwice$NullableType } final class $Example_Nested_NestedTwice$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Example_Nested_NestedTwice$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example$Nested$NestedTwice;'; - @_$jni.internal - @_$core.override - Example_Nested_NestedTwice fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Example_Nested_NestedTwice fromReference(jni$_.JReference reference) => Example_Nested_NestedTwice.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Example_Nested_NestedTwice$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example_Nested_NestedTwice$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example_Nested_NestedTwice$Type) && other is $Example_Nested_NestedTwice$Type; @@ -371,18 +371,18 @@ final class $Example_Nested_NestedTwice$Type } /// from: `com.github.dart_lang.jnigen.simple_package.Example$Nested` -class Example_Nested extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Example_Nested extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Example_Nested.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/simple_package/Example$Nested'); /// The type which includes information such as the signature of this class. @@ -392,15 +392,15 @@ class Example_Nested extends _$jni.JObject { r'(Z)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_NewObject') + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void (boolean z)` /// The returned object must be released after use, by calling the [release] method. @@ -408,7 +408,7 @@ class Example_Nested extends _$jni.JObject { bool z, ) { return Example_Nested.fromReference(_new$( - _class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, z ? 1 : 0) + _class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, z ? 1 : 0) .reference); } @@ -417,22 +417,22 @@ class Example_Nested extends _$jni.JObject { r'()V', ); - static final _usesAnonymousInnerClass = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _usesAnonymousInnerClass = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void usesAnonymousInnerClass()` void usesAnonymousInnerClass() { _usesAnonymousInnerClass(reference.pointer, - _id_usesAnonymousInnerClass as _$jni.JMethodIDPtr) + _id_usesAnonymousInnerClass as jni$_.JMethodIDPtr) .check(); } @@ -441,21 +441,21 @@ class Example_Nested extends _$jni.JObject { r'()Z', ); - static final _getValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getValue()` bool getValue() { - return _getValue(reference.pointer, _id_getValue as _$jni.JMethodIDPtr) + return _getValue(reference.pointer, _id_getValue as jni$_.JMethodIDPtr) .boolean; } @@ -464,96 +464,96 @@ class Example_Nested extends _$jni.JObject { r'(Z)V', ); - static final _setValue = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setValue = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setValue(boolean z)` void setValue( bool z, ) { - _setValue(reference.pointer, _id_setValue as _$jni.JMethodIDPtr, z ? 1 : 0) + _setValue(reference.pointer, _id_setValue as jni$_.JMethodIDPtr, z ? 1 : 0) .check(); } } final class $Example_Nested$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Example_Nested$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example$Nested;'; - @_$jni.internal - @_$core.override - Example_Nested? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Example_Nested? fromReference(jni$_.JReference reference) => reference.isNull ? null : Example_Nested.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example_Nested$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example_Nested$NullableType) && other is $Example_Nested$NullableType; } } -final class $Example_Nested$Type extends _$jni.JObjType { - @_$jni.internal +final class $Example_Nested$Type extends jni$_.JObjType { + @jni$_.internal const $Example_Nested$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example$Nested;'; - @_$jni.internal - @_$core.override - Example_Nested fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Example_Nested fromReference(jni$_.JReference reference) => Example_Nested.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Example_Nested$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example_Nested$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example_Nested$Type) && other is $Example_Nested$Type; @@ -561,18 +561,18 @@ final class $Example_Nested$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.simple_package.Example$NonStaticNested` -class Example_NonStaticNested extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Example_NonStaticNested extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Example_NonStaticNested.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/simple_package/Example$NonStaticNested'); /// The type which includes information such as the signature of this class. @@ -584,25 +584,25 @@ class Example_NonStaticNested extends _$jni.JObject { ); /// from: `public boolean ok` - bool get ok => _id_ok.get(this, const _$jni.jbooleanType()); + bool get ok => _id_ok.get(this, const jni$_.jbooleanType()); /// from: `public boolean ok` - set ok(bool value) => _id_ok.set(this, const _$jni.jbooleanType(), value); + set ok(bool value) => _id_ok.set(this, const jni$_.jbooleanType(), value); static final _id_new$ = _class.constructorId( r'(Lcom/github/dart_lang/jnigen/simple_package/Example;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.simple_package.Example $outerClass)` /// The returned object must be released after use, by calling the [release] method. @@ -611,45 +611,45 @@ class Example_NonStaticNested extends _$jni.JObject { ) { final _$$outerClass = $outerClass.reference; return Example_NonStaticNested.fromReference(_new$(_class.reference.pointer, - _id_new$ as _$jni.JMethodIDPtr, _$$outerClass.pointer) + _id_new$ as jni$_.JMethodIDPtr, _$$outerClass.pointer) .reference); } } final class $Example_NonStaticNested$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Example_NonStaticNested$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example$NonStaticNested;'; - @_$jni.internal - @_$core.override - Example_NonStaticNested? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Example_NonStaticNested? fromReference(jni$_.JReference reference) => reference.isNull ? null : Example_NonStaticNested.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example_NonStaticNested$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example_NonStaticNested$NullableType) && other is $Example_NonStaticNested$NullableType; @@ -657,38 +657,38 @@ final class $Example_NonStaticNested$NullableType } final class $Example_NonStaticNested$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $Example_NonStaticNested$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example$NonStaticNested;'; - @_$jni.internal - @_$core.override - Example_NonStaticNested fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Example_NonStaticNested fromReference(jni$_.JReference reference) => Example_NonStaticNested.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Example_NonStaticNested$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example_NonStaticNested$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example_NonStaticNested$Type) && other is $Example_NonStaticNested$Type; @@ -696,18 +696,18 @@ final class $Example_NonStaticNested$Type } /// from: `com.github.dart_lang.jnigen.simple_package.Example` -class Example extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Example extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Example.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/simple_package/Example'); /// The type which includes information such as the signature of this class. @@ -732,8 +732,8 @@ class Example extends _$jni.JObject { /// from: `static public final java.lang.String SEMICOLON_STRING` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get SEMICOLON_STRING => - _id_SEMICOLON_STRING.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get SEMICOLON_STRING => + _id_SEMICOLON_STRING.get(_class, const jni$_.JStringNullableType()); static final _id_unusedRandom = _class.staticFieldId( r'unusedRandom', @@ -742,30 +742,30 @@ class Example extends _$jni.JObject { /// from: `static public final java.util.Random unusedRandom` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JObject? get unusedRandom => - _id_unusedRandom.get(_class, const _$jni.JObjectNullableType()); + static jni$_.JObject? get unusedRandom => + _id_unusedRandom.get(_class, const jni$_.JObjectNullableType()); static final _id_getAmount = _class.staticMethodId( r'getAmount', r'()I', ); - static final _getAmount = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getAmount = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public int getAmount()` static int getAmount() { return _getAmount( - _class.reference.pointer, _id_getAmount as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_getAmount as jni$_.JMethodIDPtr) .integer; } @@ -774,21 +774,21 @@ class Example extends _$jni.JObject { r'()D', ); - static final _getPi = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getPi = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticDoubleMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public double getPi()` static double getPi() { - return _getPi(_class.reference.pointer, _id_getPi as _$jni.JMethodIDPtr) + return _getPi(_class.reference.pointer, _id_getPi as jni$_.JMethodIDPtr) .doubleFloat; } @@ -797,22 +797,22 @@ class Example extends _$jni.JObject { r'()C', ); - static final _getAsterisk = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getAsterisk = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticCharMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public char getAsterisk()` static int getAsterisk() { return _getAsterisk( - _class.reference.pointer, _id_getAsterisk as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_getAsterisk as jni$_.JMethodIDPtr) .char; } @@ -821,23 +821,23 @@ class Example extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public java.lang.String getName()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? getName() { - return _getName(_class.reference.pointer, _id_getName as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + static jni$_.JString? getName() { + return _getName(_class.reference.pointer, _id_getName as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_getNestedInstance = _class.staticMethodId( @@ -845,23 +845,23 @@ class Example extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/simple_package/Example$Nested;', ); - static final _getNestedInstance = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNestedInstance = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.github.dart_lang.jnigen.simple_package.Example$Nested getNestedInstance()` /// The returned object must be released after use, by calling the [release] method. static Example_Nested? getNestedInstance() { return _getNestedInstance(_class.reference.pointer, - _id_getNestedInstance as _$jni.JMethodIDPtr) + _id_getNestedInstance as jni$_.JMethodIDPtr) .object(const $Example_Nested$NullableType()); } @@ -870,20 +870,20 @@ class Example extends _$jni.JObject { r'(I)V', ); - static final _setAmount = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + static final _setAmount = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `static public void setAmount(int i)` static void setAmount( int i, ) { - _setAmount(_class.reference.pointer, _id_setAmount as _$jni.JMethodIDPtr, i) + _setAmount(_class.reference.pointer, _id_setAmount as jni$_.JMethodIDPtr, i) .check(); } @@ -892,23 +892,23 @@ class Example extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setName = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setName = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public void setName(java.lang.String string)` static void setName( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - _setName(_class.reference.pointer, _id_setName as _$jni.JMethodIDPtr, + final _$string = string?.reference ?? jni$_.jNullReference; + _setName(_class.reference.pointer, _id_setName as jni$_.JMethodIDPtr, _$string.pointer) .check(); } @@ -918,24 +918,24 @@ class Example extends _$jni.JObject { r'(Lcom/github/dart_lang/jnigen/simple_package/Example$Nested;)V', ); - static final _setNestedInstance = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setNestedInstance = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public void setNestedInstance(com.github.dart_lang.jnigen.simple_package.Example$Nested nested)` static void setNestedInstance( Example_Nested? nested, ) { - final _$nested = nested?.reference ?? _$jni.jNullReference; + final _$nested = nested?.reference ?? jni$_.jNullReference; _setNestedInstance(_class.reference.pointer, - _id_setNestedInstance as _$jni.JMethodIDPtr, _$nested.pointer) + _id_setNestedInstance as jni$_.JMethodIDPtr, _$nested.pointer) .check(); } @@ -944,21 +944,21 @@ class Example extends _$jni.JObject { r'(IIII)I', ); - static final _max4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _max4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, int, int)>(); /// from: `static public int max4(int i, int i1, int i2, int i3)` static int max4( @@ -967,7 +967,7 @@ class Example extends _$jni.JObject { int i2, int i3, ) { - return _max4(_class.reference.pointer, _id_max4 as _$jni.JMethodIDPtr, i, + return _max4(_class.reference.pointer, _id_max4 as jni$_.JMethodIDPtr, i, i1, i2, i3) .integer; } @@ -977,25 +977,25 @@ class Example extends _$jni.JObject { r'(IIIIIIII)I', ); - static final _max8 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _max8 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, int, int, int, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, int, int, int, int, int, int)>(); /// from: `static public int max8(int i, int i1, int i2, int i3, int i4, int i5, int i6, int i7)` static int max8( @@ -1008,7 +1008,7 @@ class Example extends _$jni.JObject { int i6, int i7, ) { - return _max8(_class.reference.pointer, _id_max8 as _$jni.JMethodIDPtr, i, + return _max8(_class.reference.pointer, _id_max8 as jni$_.JMethodIDPtr, i, i1, i2, i3, i4, i5, i6, i7) .integer; } @@ -1018,21 +1018,21 @@ class Example extends _$jni.JObject { r'()I', ); - static final _getNumber = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getNumber = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int getNumber()` int getNumber() { - return _getNumber(reference.pointer, _id_getNumber as _$jni.JMethodIDPtr) + return _getNumber(reference.pointer, _id_getNumber as jni$_.JMethodIDPtr) .integer; } @@ -1041,21 +1041,21 @@ class Example extends _$jni.JObject { r'(I)V', ); - static final _setNumber = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setNumber = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setNumber(int i)` void setNumber( int i, ) { - _setNumber(reference.pointer, _id_setNumber as _$jni.JMethodIDPtr, i) + _setNumber(reference.pointer, _id_setNumber as jni$_.JMethodIDPtr, i) .check(); } @@ -1064,21 +1064,21 @@ class Example extends _$jni.JObject { r'()Z', ); - static final _getIsUp = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getIsUp = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallBooleanMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public boolean getIsUp()` bool getIsUp() { - return _getIsUp(reference.pointer, _id_getIsUp as _$jni.JMethodIDPtr) + return _getIsUp(reference.pointer, _id_getIsUp as jni$_.JMethodIDPtr) .boolean; } @@ -1087,21 +1087,21 @@ class Example extends _$jni.JObject { r'(Z)V', ); - static final _setUp = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _setUp = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void setUp(boolean z)` void setUp( bool z, ) { - _setUp(reference.pointer, _id_setUp as _$jni.JMethodIDPtr, z ? 1 : 0) + _setUp(reference.pointer, _id_setUp as jni$_.JMethodIDPtr, z ? 1 : 0) .check(); } @@ -1110,24 +1110,24 @@ class Example extends _$jni.JObject { r'()Ljava/lang/String;', ); - static final _getCodename = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getCodename = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String getCodename()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? getCodename() { + jni$_.JString? getCodename() { return _getCodename( - reference.pointer, _id_getCodename as _$jni.JMethodIDPtr) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + reference.pointer, _id_getCodename as jni$_.JMethodIDPtr) + .object(const jni$_.JStringNullableType()); } static final _id_setCodename = _class.instanceMethodId( @@ -1135,23 +1135,23 @@ class Example extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _setCodename = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setCodename = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setCodename(java.lang.String string)` void setCodename( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - _setCodename(reference.pointer, _id_setCodename as _$jni.JMethodIDPtr, + final _$string = string?.reference ?? jni$_.jNullReference; + _setCodename(reference.pointer, _id_setCodename as jni$_.JMethodIDPtr, _$string.pointer) .check(); } @@ -1161,23 +1161,23 @@ class Example extends _$jni.JObject { r'()Ljava/util/Random;', ); - static final _getRandom = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getRandom = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.Random getRandom()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? getRandom() { - return _getRandom(reference.pointer, _id_getRandom as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + jni$_.JObject? getRandom() { + return _getRandom(reference.pointer, _id_getRandom as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_setRandom = _class.instanceMethodId( @@ -1185,23 +1185,23 @@ class Example extends _$jni.JObject { r'(Ljava/util/Random;)V', ); - static final _setRandom = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _setRandom = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void setRandom(java.util.Random random)` void setRandom( - _$jni.JObject? random, + jni$_.JObject? random, ) { - final _$random = random?.reference ?? _$jni.jNullReference; - _setRandom(reference.pointer, _id_setRandom as _$jni.JMethodIDPtr, + final _$random = random?.reference ?? jni$_.jNullReference; + _setRandom(reference.pointer, _id_setRandom as jni$_.JMethodIDPtr, _$random.pointer) .check(); } @@ -1211,22 +1211,22 @@ class Example extends _$jni.JObject { r'()J', ); - static final _getRandomLong = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getRandomLong = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public long getRandomLong()` int getRandomLong() { return _getRandomLong( - reference.pointer, _id_getRandomLong as _$jni.JMethodIDPtr) + reference.pointer, _id_getRandomLong as jni$_.JMethodIDPtr) .long; } @@ -1235,21 +1235,21 @@ class Example extends _$jni.JObject { r'(JJJJ)J', ); - static final _add4Longs = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _add4Longs = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int64, - _$jni.Int64, - _$jni.Int64, - _$jni.Int64 + jni$_.Int64, + jni$_.Int64, + jni$_.Int64, + jni$_.Int64 )>)>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, int, int)>(); /// from: `public long add4Longs(long j, long j1, long j2, long j3)` int add4Longs( @@ -1258,7 +1258,7 @@ class Example extends _$jni.JObject { int j2, int j3, ) { - return _add4Longs(reference.pointer, _id_add4Longs as _$jni.JMethodIDPtr, j, + return _add4Longs(reference.pointer, _id_add4Longs as jni$_.JMethodIDPtr, j, j1, j2, j3) .long; } @@ -1268,25 +1268,25 @@ class Example extends _$jni.JObject { r'(JJJJJJJJ)J', ); - static final _add8Longs = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _add8Longs = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int64, - _$jni.Int64, - _$jni.Int64, - _$jni.Int64, - _$jni.Int64, - _$jni.Int64, - _$jni.Int64, - _$jni.Int64 + jni$_.Int64, + jni$_.Int64, + jni$_.Int64, + jni$_.Int64, + jni$_.Int64, + jni$_.Int64, + jni$_.Int64, + jni$_.Int64 )>)>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, int, int, int, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, int, int, int, int, int, int)>(); /// from: `public long add8Longs(long j, long j1, long j2, long j3, long j4, long j5, long j6, long j7)` int add8Longs( @@ -1299,7 +1299,7 @@ class Example extends _$jni.JObject { int j6, int j7, ) { - return _add8Longs(reference.pointer, _id_add8Longs as _$jni.JMethodIDPtr, j, + return _add8Longs(reference.pointer, _id_add8Longs as jni$_.JMethodIDPtr, j, j1, j2, j3, j4, j5, j6, j7) .long; } @@ -1309,26 +1309,26 @@ class Example extends _$jni.JObject { r'(Ljava/util/Random;)Ljava/lang/String;', ); - static final _getRandomNumericString = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _getRandomNumericString = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.lang.String getRandomNumericString(java.util.Random random)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? getRandomNumericString( - _$jni.JObject? random, + jni$_.JString? getRandomNumericString( + jni$_.JObject? random, ) { - final _$random = random?.reference ?? _$jni.jNullReference; + final _$random = random?.reference ?? jni$_.jNullReference; return _getRandomNumericString(reference.pointer, - _id_getRandomNumericString as _$jni.JMethodIDPtr, _$random.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _id_getRandomNumericString as jni$_.JMethodIDPtr, _$random.pointer) + .object(const jni$_.JStringNullableType()); } static final _id_finalMethod = _class.instanceMethodId( @@ -1336,21 +1336,21 @@ class Example extends _$jni.JObject { r'()V', ); - static final _finalMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _finalMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public final void finalMethod()` void finalMethod() { - _finalMethod(reference.pointer, _id_finalMethod as _$jni.JMethodIDPtr) + _finalMethod(reference.pointer, _id_finalMethod as jni$_.JMethodIDPtr) .check(); } @@ -1359,25 +1359,25 @@ class Example extends _$jni.JObject { r'()Ljava/util/List;', ); - static final _getList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List getList()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JString?>? getList() { - return _getList(reference.pointer, _id_getList as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JString?>?>( - const _$jni.JListNullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + jni$_.JList? getList() { + return _getList(reference.pointer, _id_getList as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JListNullableType( + jni$_.JStringNullableType())); } static final _id_joinStrings = _class.instanceMethodId( @@ -1385,37 +1385,37 @@ class Example extends _$jni.JObject { r'(Ljava/util/List;Ljava/lang/String;)Ljava/lang/String;', ); - static final _joinStrings = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _joinStrings = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public java.lang.String joinStrings(java.util.List list, java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? joinStrings( - _$jni.JList<_$jni.JString?>? list, - _$jni.JString? string, + jni$_.JString? joinStrings( + jni$_.JList? list, + jni$_.JString? string, ) { - final _$list = list?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; + final _$list = list?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _joinStrings( reference.pointer, - _id_joinStrings as _$jni.JMethodIDPtr, + _id_joinStrings as jni$_.JMethodIDPtr, _$list.pointer, _$string.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + .object(const jni$_.JStringNullableType()); } static final _id_methodWithSeveralParams = _class.instanceMethodId( @@ -1423,49 +1423,49 @@ class Example extends _$jni.JObject { r'(CLjava/lang/String;[ILjava/lang/CharSequence;Ljava/util/List;Ljava/util/Map;)V', ); - static final _methodWithSeveralParams = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _methodWithSeveralParams = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Int32, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, int, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void methodWithSeveralParams(char c, java.lang.String string, java.lang.Object[] is, T charSequence, java.util.List list, java.util.Map map)` - void methodWithSeveralParams<$T extends _$jni.JObject?>( + void methodWithSeveralParams<$T extends jni$_.JObject?>( int c, - _$jni.JString? string, - _$jni.JArray<_$jni.jint>? is$, + jni$_.JString? string, + jni$_.JArray? is$, $T? charSequence, - _$jni.JList<$T?>? list, - _$jni.JMap<_$jni.JString?, _$jni.JObject?>? map, { - required _$jni.JObjType<$T> T, + jni$_.JList<$T?>? list, + jni$_.JMap? map, { + required jni$_.JObjType<$T> T, }) { - final _$string = string?.reference ?? _$jni.jNullReference; - final _$is$ = is$?.reference ?? _$jni.jNullReference; - final _$charSequence = charSequence?.reference ?? _$jni.jNullReference; - final _$list = list?.reference ?? _$jni.jNullReference; - final _$map = map?.reference ?? _$jni.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; + final _$is$ = is$?.reference ?? jni$_.jNullReference; + final _$charSequence = charSequence?.reference ?? jni$_.jNullReference; + final _$list = list?.reference ?? jni$_.jNullReference; + final _$map = map?.reference ?? jni$_.jNullReference; _methodWithSeveralParams( reference.pointer, - _id_methodWithSeveralParams as _$jni.JMethodIDPtr, + _id_methodWithSeveralParams as jni$_.JMethodIDPtr, c, _$string.pointer, _$is$.pointer, @@ -1479,23 +1479,23 @@ class Example extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Example() { return Example.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -1503,15 +1503,15 @@ class Example extends _$jni.JObject { r'(I)V', ); - static final _new$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_NewObject') + static final _new$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void (int i)` /// The returned object must be released after use, by calling the [release] method. @@ -1519,7 +1519,7 @@ class Example extends _$jni.JObject { int i, ) { return Example.fromReference( - _new$1(_class.reference.pointer, _id_new$1 as _$jni.JMethodIDPtr, i) + _new$1(_class.reference.pointer, _id_new$1 as jni$_.JMethodIDPtr, i) .reference); } @@ -1527,16 +1527,16 @@ class Example extends _$jni.JObject { r'(IZ)V', ); - static final _new$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32, _$jni.Int32)>)>>( + static final _new$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32, jni$_.Int32)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int, int)>(); /// from: `public void (int i, boolean z)` /// The returned object must be released after use, by calling the [release] method. @@ -1545,7 +1545,7 @@ class Example extends _$jni.JObject { bool z, ) { return Example.fromReference(_new$2(_class.reference.pointer, - _id_new$2 as _$jni.JMethodIDPtr, i, z ? 1 : 0) + _id_new$2 as jni$_.JMethodIDPtr, i, z ? 1 : 0) .reference); } @@ -1553,31 +1553,31 @@ class Example extends _$jni.JObject { r'(IZLjava/lang/String;)V', ); - static final _new$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Int32, - _$jni.Pointer<_$jni.Void> + jni$_.Int32, + jni$_.Int32, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, jni$_.Pointer)>(); /// from: `public void (int i, boolean z, java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. factory Example.new$3( int i, bool z, - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return Example.fromReference(_new$3(_class.reference.pointer, - _id_new$3 as _$jni.JMethodIDPtr, i, z ? 1 : 0, _$string.pointer) + _id_new$3 as jni$_.JMethodIDPtr, i, z ? 1 : 0, _$string.pointer) .reference); } @@ -1585,25 +1585,25 @@ class Example extends _$jni.JObject { r'(IIIIIIII)V', ); - static final _new$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, int, int, int, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, int, int, int, int, int, int)>(); /// from: `public void (int i, int i1, int i2, int i3, int i4, int i5, int i6, int i7)` /// The returned object must be released after use, by calling the [release] method. @@ -1618,7 +1618,7 @@ class Example extends _$jni.JObject { int i7, ) { return Example.fromReference(_new$4(_class.reference.pointer, - _id_new$4 as _$jni.JMethodIDPtr, i, i1, i2, i3, i4, i5, i6, i7) + _id_new$4 as jni$_.JMethodIDPtr, i, i1, i2, i3, i4, i5, i6, i7) .reference); } @@ -1627,22 +1627,22 @@ class Example extends _$jni.JObject { r'()I', ); - static final _whichExample = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _whichExample = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int whichExample()` int whichExample() { return _whichExample( - reference.pointer, _id_whichExample as _$jni.JMethodIDPtr) + reference.pointer, _id_whichExample as jni$_.JMethodIDPtr) .integer; } @@ -1651,16 +1651,16 @@ class Example extends _$jni.JObject { r'(II)I', ); - static final _addInts = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32, _$jni.Int32)>)>>( + static final _addInts = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32, jni$_.Int32)>)>>( 'globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int, int)>(); /// from: `static public int addInts(int i, int i1)` static int addInts( @@ -1668,7 +1668,7 @@ class Example extends _$jni.JObject { int i1, ) { return _addInts( - _class.reference.pointer, _id_addInts as _$jni.JMethodIDPtr, i, i1) + _class.reference.pointer, _id_addInts as jni$_.JMethodIDPtr, i, i1) .integer; } @@ -1677,24 +1677,24 @@ class Example extends _$jni.JObject { r'()[I', ); - static final _getArr = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getArr = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public int[] getArr()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray<_$jni.jint>? getArr() { - return _getArr(_class.reference.pointer, _id_getArr as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.jint>?>( - const _$jni.JArrayNullableType<_$jni.jint>(_$jni.jintType())); + static jni$_.JArray? getArr() { + return _getArr(_class.reference.pointer, _id_getArr as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType(jni$_.jintType())); } static final _id_addAll = _class.staticMethodId( @@ -1702,23 +1702,23 @@ class Example extends _$jni.JObject { r'([I)I', ); - static final _addAll = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _addAll = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public int addAll(int[] is)` static int addAll( - _$jni.JArray<_$jni.jint>? is$, + jni$_.JArray? is$, ) { - final _$is$ = is$?.reference ?? _$jni.jNullReference; - return _addAll(_class.reference.pointer, _id_addAll as _$jni.JMethodIDPtr, + final _$is$ = is$?.reference ?? jni$_.jNullReference; + return _addAll(_class.reference.pointer, _id_addAll as jni$_.JMethodIDPtr, _$is$.pointer) .integer; } @@ -1728,22 +1728,22 @@ class Example extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/simple_package/Example;', ); - static final _getSelf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getSelf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.github.dart_lang.jnigen.simple_package.Example getSelf()` /// The returned object must be released after use, by calling the [release] method. Example? getSelf() { - return _getSelf(reference.pointer, _id_getSelf as _$jni.JMethodIDPtr) + return _getSelf(reference.pointer, _id_getSelf as jni$_.JMethodIDPtr) .object(const $Example$NullableType()); } @@ -1752,22 +1752,22 @@ class Example extends _$jni.JObject { r'()V', ); - static final _throwException = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _throwException = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public void throwException()` static void throwException() { _throwException( - _class.reference.pointer, _id_throwException as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_throwException as jni$_.JMethodIDPtr) .check(); } @@ -1776,21 +1776,21 @@ class Example extends _$jni.JObject { r'()V', ); - static final _overloaded = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _overloaded = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void overloaded()` void overloaded() { - _overloaded(reference.pointer, _id_overloaded as _$jni.JMethodIDPtr) + _overloaded(reference.pointer, _id_overloaded as jni$_.JMethodIDPtr) .check(); } @@ -1799,25 +1799,25 @@ class Example extends _$jni.JObject { r'(ILjava/lang/String;)V', ); - static final _overloaded$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Int32, _$jni.Pointer<_$jni.Void>)>)>>( + static final _overloaded$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Int32, jni$_.Pointer)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, jni$_.Pointer)>(); /// from: `public void overloaded(int i, java.lang.String string)` void overloaded$1( int i, - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - _overloaded$1(reference.pointer, _id_overloaded$1 as _$jni.JMethodIDPtr, i, + final _$string = string?.reference ?? jni$_.jNullReference; + _overloaded$1(reference.pointer, _id_overloaded$1 as jni$_.JMethodIDPtr, i, _$string.pointer) .check(); } @@ -1827,21 +1827,21 @@ class Example extends _$jni.JObject { r'(I)V', ); - static final _overloaded$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallVoidMethod') + static final _overloaded$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public void overloaded(int i)` void overloaded$2( int i, ) { - _overloaded$2(reference.pointer, _id_overloaded$2 as _$jni.JMethodIDPtr, i) + _overloaded$2(reference.pointer, _id_overloaded$2 as jni$_.JMethodIDPtr, i) .check(); } @@ -1850,31 +1850,31 @@ class Example extends _$jni.JObject { r'(Ljava/util/List;Ljava/lang/String;)V', ); - static final _overloaded$3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _overloaded$3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void overloaded(java.util.List list, java.lang.String string)` void overloaded$3( - _$jni.JList<_$jni.JInteger?>? list, - _$jni.JString? string, + jni$_.JList? list, + jni$_.JString? string, ) { - final _$list = list?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; - _overloaded$3(reference.pointer, _id_overloaded$3 as _$jni.JMethodIDPtr, + final _$list = list?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; + _overloaded$3(reference.pointer, _id_overloaded$3 as jni$_.JMethodIDPtr, _$list.pointer, _$string.pointer) .check(); } @@ -1884,114 +1884,114 @@ class Example extends _$jni.JObject { r'(Ljava/util/List;)V', ); - static final _overloaded$4 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _overloaded$4 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void overloaded(java.util.List list)` void overloaded$4( - _$jni.JList<_$jni.JInteger?>? list, + jni$_.JList? list, ) { - final _$list = list?.reference ?? _$jni.jNullReference; - _overloaded$4(reference.pointer, _id_overloaded$4 as _$jni.JMethodIDPtr, + final _$list = list?.reference ?? jni$_.jNullReference; + _overloaded$4(reference.pointer, _id_overloaded$4 as jni$_.JMethodIDPtr, _$list.pointer) .check(); } } -final class $Example$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Example$NullableType extends jni$_.JObjType { + @jni$_.internal const $Example$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example;'; - @_$jni.internal - @_$core.override - Example? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Example? fromReference(jni$_.JReference reference) => reference.isNull ? null : Example.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example$NullableType) && other is $Example$NullableType; } } -final class $Example$Type extends _$jni.JObjType { - @_$jni.internal +final class $Example$Type extends jni$_.JObjType { + @jni$_.internal const $Example$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Example;'; - @_$jni.internal - @_$core.override - Example fromReference(_$jni.JReference reference) => Example.fromReference( + @jni$_.internal + @core$_.override + Example fromReference(jni$_.JReference reference) => Example.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $Example$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Example$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example$Type) && other is $Example$Type; } } /// from: `com.github.dart_lang.jnigen.simple_package.Exceptions` -class Exceptions extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Exceptions extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Exceptions.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/simple_package/Exceptions'); /// The type which includes information such as the signature of this class. @@ -2001,23 +2001,23 @@ class Exceptions extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Exceptions() { return Exceptions.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -2025,15 +2025,15 @@ class Exceptions extends _$jni.JObject { r'(F)V', ); - static final _new$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Double,)>)>>('globalEnv_NewObject') + static final _new$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Double,)>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, double)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, double)>(); /// from: `public void (float f)` /// The returned object must be released after use, by calling the [release] method. @@ -2041,7 +2041,7 @@ class Exceptions extends _$jni.JObject { double f, ) { return Exceptions.fromReference( - _new$1(_class.reference.pointer, _id_new$1 as _$jni.JMethodIDPtr, f) + _new$1(_class.reference.pointer, _id_new$1 as jni$_.JMethodIDPtr, f) .reference); } @@ -2049,23 +2049,23 @@ class Exceptions extends _$jni.JObject { r'(IIIIII)V', ); - static final _new$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32 + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32 )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, int, int, int, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, int, int, int, int)>(); /// from: `public void (int i, int i1, int i2, int i3, int i4, int i5)` /// The returned object must be released after use, by calling the [release] method. @@ -2078,7 +2078,7 @@ class Exceptions extends _$jni.JObject { int i5, ) { return Exceptions.fromReference(_new$2(_class.reference.pointer, - _id_new$2 as _$jni.JMethodIDPtr, i, i1, i2, i3, i4, i5) + _id_new$2 as jni$_.JMethodIDPtr, i, i1, i2, i3, i4, i5) .reference); } @@ -2087,24 +2087,24 @@ class Exceptions extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _staticObjectMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _staticObjectMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public java.lang.Object staticObjectMethod()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JObject? staticObjectMethod() { + static jni$_.JObject? staticObjectMethod() { return _staticObjectMethod(_class.reference.pointer, - _id_staticObjectMethod as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_staticObjectMethod as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_staticIntMethod = _class.staticMethodId( @@ -2112,22 +2112,22 @@ class Exceptions extends _$jni.JObject { r'()I', ); - static final _staticIntMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _staticIntMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public int staticIntMethod()` static int staticIntMethod() { return _staticIntMethod( - _class.reference.pointer, _id_staticIntMethod as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_staticIntMethod as jni$_.JMethodIDPtr) .integer; } @@ -2136,26 +2136,26 @@ class Exceptions extends _$jni.JObject { r'()[Ljava/lang/Object;', ); - static final _staticObjectArrayMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _staticObjectArrayMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public java.lang.Object[] staticObjectArrayMethod()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray<_$jni.JObject?>? staticObjectArrayMethod() { + static jni$_.JArray? staticObjectArrayMethod() { return _staticObjectArrayMethod(_class.reference.pointer, - _id_staticObjectArrayMethod as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.JObject?>?>( - const _$jni.JArrayNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + _id_staticObjectArrayMethod as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( + jni$_.JObjectNullableType())); } static final _id_staticIntArrayMethod = _class.staticMethodId( @@ -2163,25 +2163,25 @@ class Exceptions extends _$jni.JObject { r'()[I', ); - static final _staticIntArrayMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _staticIntArrayMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public int[] staticIntArrayMethod()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray<_$jni.jint>? staticIntArrayMethod() { + static jni$_.JArray? staticIntArrayMethod() { return _staticIntArrayMethod(_class.reference.pointer, - _id_staticIntArrayMethod as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.jint>?>( - const _$jni.JArrayNullableType<_$jni.jint>(_$jni.jintType())); + _id_staticIntArrayMethod as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType(jni$_.jintType())); } static final _id_objectMethod = _class.instanceMethodId( @@ -2189,24 +2189,24 @@ class Exceptions extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _objectMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _objectMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object objectMethod()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? objectMethod() { + jni$_.JObject? objectMethod() { return _objectMethod( - reference.pointer, _id_objectMethod as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + reference.pointer, _id_objectMethod as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_intMethod = _class.instanceMethodId( @@ -2214,21 +2214,21 @@ class Exceptions extends _$jni.JObject { r'()I', ); - static final _intMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _intMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int intMethod()` int intMethod() { - return _intMethod(reference.pointer, _id_intMethod as _$jni.JMethodIDPtr) + return _intMethod(reference.pointer, _id_intMethod as jni$_.JMethodIDPtr) .integer; } @@ -2237,26 +2237,26 @@ class Exceptions extends _$jni.JObject { r'()[Ljava/lang/Object;', ); - static final _objectArrayMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _objectArrayMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.Object[] objectArrayMethod()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.JObject?>? objectArrayMethod() { + jni$_.JArray? objectArrayMethod() { return _objectArrayMethod( - reference.pointer, _id_objectArrayMethod as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.JObject?>?>( - const _$jni.JArrayNullableType<_$jni.JObject?>( - _$jni.JObjectNullableType())); + reference.pointer, _id_objectArrayMethod as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( + jni$_.JObjectNullableType())); } static final _id_intArrayMethod = _class.instanceMethodId( @@ -2264,25 +2264,25 @@ class Exceptions extends _$jni.JObject { r'()[I', ); - static final _intArrayMethod = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _intArrayMethod = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int[] intArrayMethod()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.jint>? intArrayMethod() { + jni$_.JArray? intArrayMethod() { return _intArrayMethod( - reference.pointer, _id_intArrayMethod as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.jint>?>( - const _$jni.JArrayNullableType<_$jni.jint>(_$jni.jintType())); + reference.pointer, _id_intArrayMethod as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType(jni$_.jintType())); } static final _id_throwNullPointerException = _class.instanceMethodId( @@ -2290,22 +2290,22 @@ class Exceptions extends _$jni.JObject { r'()I', ); - static final _throwNullPointerException = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _throwNullPointerException = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int throwNullPointerException()` int throwNullPointerException() { return _throwNullPointerException(reference.pointer, - _id_throwNullPointerException as _$jni.JMethodIDPtr) + _id_throwNullPointerException as jni$_.JMethodIDPtr) .integer; } @@ -2315,24 +2315,24 @@ class Exceptions extends _$jni.JObject { ); static final _throwFileNotFoundException = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.io.InputStream throwFileNotFoundException()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? throwFileNotFoundException() { + jni$_.JObject? throwFileNotFoundException() { return _throwFileNotFoundException(reference.pointer, - _id_throwFileNotFoundException as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_throwFileNotFoundException as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_throwClassCastException = _class.instanceMethodId( @@ -2340,24 +2340,24 @@ class Exceptions extends _$jni.JObject { r'()Ljava/io/FileInputStream;', ); - static final _throwClassCastException = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _throwClassCastException = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.io.FileInputStream throwClassCastException()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? throwClassCastException() { + jni$_.JObject? throwClassCastException() { return _throwClassCastException(reference.pointer, - _id_throwClassCastException as _$jni.JMethodIDPtr) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_throwClassCastException as jni$_.JMethodIDPtr) + .object(const jni$_.JObjectNullableType()); } static final _id_throwArrayIndexException = _class.instanceMethodId( @@ -2365,22 +2365,22 @@ class Exceptions extends _$jni.JObject { r'()I', ); - static final _throwArrayIndexException = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _throwArrayIndexException = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int throwArrayIndexException()` int throwArrayIndexException() { return _throwArrayIndexException(reference.pointer, - _id_throwArrayIndexException as _$jni.JMethodIDPtr) + _id_throwArrayIndexException as jni$_.JMethodIDPtr) .integer; } @@ -2389,22 +2389,22 @@ class Exceptions extends _$jni.JObject { r'()I', ); - static final _throwArithmeticException = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _throwArithmeticException = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int throwArithmeticException()` int throwArithmeticException() { return _throwArithmeticException(reference.pointer, - _id_throwArithmeticException as _$jni.JMethodIDPtr) + _id_throwArithmeticException as jni$_.JMethodIDPtr) .integer; } @@ -2413,114 +2413,114 @@ class Exceptions extends _$jni.JObject { r'()V', ); - static final _throwLoremIpsum = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _throwLoremIpsum = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public void throwLoremIpsum()` static void throwLoremIpsum() { _throwLoremIpsum( - _class.reference.pointer, _id_throwLoremIpsum as _$jni.JMethodIDPtr) + _class.reference.pointer, _id_throwLoremIpsum as jni$_.JMethodIDPtr) .check(); } } -final class $Exceptions$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Exceptions$NullableType extends jni$_.JObjType { + @jni$_.internal const $Exceptions$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Exceptions;'; - @_$jni.internal - @_$core.override - Exceptions? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Exceptions? fromReference(jni$_.JReference reference) => reference.isNull ? null : Exceptions.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Exceptions$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Exceptions$NullableType) && other is $Exceptions$NullableType; } } -final class $Exceptions$Type extends _$jni.JObjType { - @_$jni.internal +final class $Exceptions$Type extends jni$_.JObjType { + @jni$_.internal const $Exceptions$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Exceptions;'; - @_$jni.internal - @_$core.override - Exceptions fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Exceptions fromReference(jni$_.JReference reference) => Exceptions.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Exceptions$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Exceptions$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Exceptions$Type) && other is $Exceptions$Type; } } /// from: `com.github.dart_lang.jnigen.simple_package.Fields$Nested` -class Fields_Nested extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Fields_Nested extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Fields_Nested.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/simple_package/Fields$Nested'); /// The type which includes information such as the signature of this class. @@ -2532,11 +2532,11 @@ class Fields_Nested extends _$jni.JObject { ); /// from: `public long hundred` - int get hundred => _id_hundred.get(this, const _$jni.jlongType()); + int get hundred => _id_hundred.get(this, const jni$_.jlongType()); /// from: `public long hundred` set hundred(int value) => - _id_hundred.set(this, const _$jni.jlongType(), value); + _id_hundred.set(this, const jni$_.jlongType(), value); static final _id_BEST_GOD = _class.staticFieldId( r'BEST_GOD', @@ -2545,109 +2545,109 @@ class Fields_Nested extends _$jni.JObject { /// from: `static public java.lang.String BEST_GOD` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get BEST_GOD => - _id_BEST_GOD.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get BEST_GOD => + _id_BEST_GOD.get(_class, const jni$_.JStringNullableType()); /// from: `static public java.lang.String BEST_GOD` /// The returned object must be released after use, by calling the [release] method. - static set BEST_GOD(_$jni.JString? value) => - _id_BEST_GOD.set(_class, const _$jni.JStringNullableType(), value); + static set BEST_GOD(jni$_.JString? value) => + _id_BEST_GOD.set(_class, const jni$_.JStringNullableType(), value); static final _id_new$ = _class.constructorId( r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Fields_Nested() { return Fields_Nested.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $Fields_Nested$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Fields_Nested$NullableType extends jni$_.JObjType { + @jni$_.internal const $Fields_Nested$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Fields$Nested;'; - @_$jni.internal - @_$core.override - Fields_Nested? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Fields_Nested? fromReference(jni$_.JReference reference) => reference.isNull ? null : Fields_Nested.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Fields_Nested$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Fields_Nested$NullableType) && other is $Fields_Nested$NullableType; } } -final class $Fields_Nested$Type extends _$jni.JObjType { - @_$jni.internal +final class $Fields_Nested$Type extends jni$_.JObjType { + @jni$_.internal const $Fields_Nested$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Fields$Nested;'; - @_$jni.internal - @_$core.override - Fields_Nested fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Fields_Nested fromReference(jni$_.JReference reference) => Fields_Nested.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Fields_Nested$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Fields_Nested$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Fields_Nested$Type) && other is $Fields_Nested$Type; @@ -2655,18 +2655,18 @@ final class $Fields_Nested$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.simple_package.Fields` -class Fields extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Fields extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Fields.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/simple_package/Fields'); /// The type which includes information such as the signature of this class. @@ -2678,11 +2678,11 @@ class Fields extends _$jni.JObject { ); /// from: `static public int amount` - static int get amount => _id_amount.get(_class, const _$jni.jintType()); + static int get amount => _id_amount.get(_class, const jni$_.jintType()); /// from: `static public int amount` static set amount(int value) => - _id_amount.set(_class, const _$jni.jintType(), value); + _id_amount.set(_class, const jni$_.jintType(), value); static final _id_pi = _class.staticFieldId( r'pi', @@ -2690,11 +2690,11 @@ class Fields extends _$jni.JObject { ); /// from: `static public double pi` - static double get pi => _id_pi.get(_class, const _$jni.jdoubleType()); + static double get pi => _id_pi.get(_class, const jni$_.jdoubleType()); /// from: `static public double pi` static set pi(double value) => - _id_pi.set(_class, const _$jni.jdoubleType(), value); + _id_pi.set(_class, const jni$_.jdoubleType(), value); static final _id_asterisk = _class.staticFieldId( r'asterisk', @@ -2702,11 +2702,11 @@ class Fields extends _$jni.JObject { ); /// from: `static public char asterisk` - static int get asterisk => _id_asterisk.get(_class, const _$jni.jcharType()); + static int get asterisk => _id_asterisk.get(_class, const jni$_.jcharType()); /// from: `static public char asterisk` static set asterisk(int value) => - _id_asterisk.set(_class, const _$jni.jcharType(), value); + _id_asterisk.set(_class, const jni$_.jcharType(), value); static final _id_name = _class.staticFieldId( r'name', @@ -2715,13 +2715,13 @@ class Fields extends _$jni.JObject { /// from: `static public java.lang.String name` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JString? get name => - _id_name.get(_class, const _$jni.JStringNullableType()); + static jni$_.JString? get name => + _id_name.get(_class, const jni$_.JStringNullableType()); /// from: `static public java.lang.String name` /// The returned object must be released after use, by calling the [release] method. - static set name(_$jni.JString? value) => - _id_name.set(_class, const _$jni.JStringNullableType(), value); + static set name(jni$_.JString? value) => + _id_name.set(_class, const jni$_.JStringNullableType(), value); static final _id_i = _class.instanceFieldId( r'i', @@ -2730,12 +2730,12 @@ class Fields extends _$jni.JObject { /// from: `public java.lang.Integer i` /// The returned object must be released after use, by calling the [release] method. - _$jni.JInteger? get i => _id_i.get(this, const _$jni.JIntegerNullableType()); + jni$_.JInteger? get i => _id_i.get(this, const jni$_.JIntegerNullableType()); /// from: `public java.lang.Integer i` /// The returned object must be released after use, by calling the [release] method. - set i(_$jni.JInteger? value) => - _id_i.set(this, const _$jni.JIntegerNullableType(), value); + set i(jni$_.JInteger? value) => + _id_i.set(this, const jni$_.JIntegerNullableType(), value); static final _id_trillion = _class.instanceFieldId( r'trillion', @@ -2743,11 +2743,11 @@ class Fields extends _$jni.JObject { ); /// from: `public long trillion` - int get trillion => _id_trillion.get(this, const _$jni.jlongType()); + int get trillion => _id_trillion.get(this, const jni$_.jlongType()); /// from: `public long trillion` set trillion(int value) => - _id_trillion.set(this, const _$jni.jlongType(), value); + _id_trillion.set(this, const jni$_.jlongType(), value); static final _id_isAchillesDead = _class.instanceFieldId( r'isAchillesDead', @@ -2756,11 +2756,11 @@ class Fields extends _$jni.JObject { /// from: `public boolean isAchillesDead` bool get isAchillesDead => - _id_isAchillesDead.get(this, const _$jni.jbooleanType()); + _id_isAchillesDead.get(this, const jni$_.jbooleanType()); /// from: `public boolean isAchillesDead` set isAchillesDead(bool value) => - _id_isAchillesDead.set(this, const _$jni.jbooleanType(), value); + _id_isAchillesDead.set(this, const jni$_.jbooleanType(), value); static final _id_bestFighterInGreece = _class.instanceFieldId( r'bestFighterInGreece', @@ -2769,13 +2769,13 @@ class Fields extends _$jni.JObject { /// from: `public java.lang.String bestFighterInGreece` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? get bestFighterInGreece => - _id_bestFighterInGreece.get(this, const _$jni.JStringNullableType()); + jni$_.JString? get bestFighterInGreece => + _id_bestFighterInGreece.get(this, const jni$_.JStringNullableType()); /// from: `public java.lang.String bestFighterInGreece` /// The returned object must be released after use, by calling the [release] method. - set bestFighterInGreece(_$jni.JString? value) => _id_bestFighterInGreece.set( - this, const _$jni.JStringNullableType(), value); + set bestFighterInGreece(jni$_.JString? value) => _id_bestFighterInGreece.set( + this, const jni$_.JStringNullableType(), value); static final _id_random = _class.instanceFieldId( r'random', @@ -2784,13 +2784,13 @@ class Fields extends _$jni.JObject { /// from: `public java.util.Random random` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? get random => - _id_random.get(this, const _$jni.JObjectNullableType()); + jni$_.JObject? get random => + _id_random.get(this, const jni$_.JObjectNullableType()); /// from: `public java.util.Random random` /// The returned object must be released after use, by calling the [release] method. - set random(_$jni.JObject? value) => - _id_random.set(this, const _$jni.JObjectNullableType(), value); + set random(jni$_.JObject? value) => + _id_random.set(this, const jni$_.JObjectNullableType(), value); static final _id_euroSymbol = _class.staticFieldId( r'euroSymbol', @@ -2799,124 +2799,124 @@ class Fields extends _$jni.JObject { /// from: `static public char euroSymbol` static int get euroSymbol => - _id_euroSymbol.get(_class, const _$jni.jcharType()); + _id_euroSymbol.get(_class, const jni$_.jcharType()); /// from: `static public char euroSymbol` static set euroSymbol(int value) => - _id_euroSymbol.set(_class, const _$jni.jcharType(), value); + _id_euroSymbol.set(_class, const jni$_.jcharType(), value); static final _id_new$ = _class.constructorId( r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Fields() { return Fields.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $Fields$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Fields$NullableType extends jni$_.JObjType { + @jni$_.internal const $Fields$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Fields;'; - @_$jni.internal - @_$core.override - Fields? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Fields? fromReference(jni$_.JReference reference) => reference.isNull ? null : Fields.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Fields$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Fields$NullableType) && other is $Fields$NullableType; } } -final class $Fields$Type extends _$jni.JObjType { - @_$jni.internal +final class $Fields$Type extends jni$_.JObjType { + @jni$_.internal const $Fields$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/simple_package/Fields;'; - @_$jni.internal - @_$core.override - Fields fromReference(_$jni.JReference reference) => Fields.fromReference( + @jni$_.internal + @core$_.override + Fields fromReference(jni$_.JReference reference) => Fields.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $Fields$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Fields$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Fields$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Fields$Type) && other is $Fields$Type; } } /// from: `com.github.dart_lang.jnigen.pkg2.C2` -class C2 extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class C2 extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal C2.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/pkg2/C2'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/pkg2/C2'); /// The type which includes information such as the signature of this class. static const nullableType = $C2$NullableType(); @@ -2927,121 +2927,121 @@ class C2 extends _$jni.JObject { ); /// from: `static public int CONSTANT` - static int get CONSTANT => _id_CONSTANT.get(_class, const _$jni.jintType()); + static int get CONSTANT => _id_CONSTANT.get(_class, const jni$_.jintType()); /// from: `static public int CONSTANT` static set CONSTANT(int value) => - _id_CONSTANT.set(_class, const _$jni.jintType(), value); + _id_CONSTANT.set(_class, const jni$_.jintType(), value); static final _id_new$ = _class.constructorId( r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory C2() { return C2.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $C2$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $C2$NullableType extends jni$_.JObjType { + @jni$_.internal const $C2$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/pkg2/C2;'; - @_$jni.internal - @_$core.override - C2? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + C2? fromReference(jni$_.JReference reference) => reference.isNull ? null : C2.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($C2$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($C2$NullableType) && other is $C2$NullableType; } } -final class $C2$Type extends _$jni.JObjType { - @_$jni.internal +final class $C2$Type extends jni$_.JObjType { + @jni$_.internal const $C2$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/pkg2/C2;'; - @_$jni.internal - @_$core.override - C2 fromReference(_$jni.JReference reference) => C2.fromReference( + @jni$_.internal + @core$_.override + C2 fromReference(jni$_.JReference reference) => C2.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $C2$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $C2$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($C2$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($C2$Type) && other is $C2$Type; } } /// from: `com.github.dart_lang.jnigen.pkg2.Example` -class Example$1 extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Example$1 extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Example$1.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/pkg2/Example'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/pkg2/Example'); /// The type which includes information such as the signature of this class. static const nullableType = $Example$1$NullableType(); @@ -3050,23 +3050,23 @@ class Example$1 extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory Example$1() { return Example$1.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -3075,128 +3075,128 @@ class Example$1 extends _$jni.JObject { r'()I', ); - static final _whichExample = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _whichExample = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int whichExample()` int whichExample() { return _whichExample( - reference.pointer, _id_whichExample as _$jni.JMethodIDPtr) + reference.pointer, _id_whichExample as jni$_.JMethodIDPtr) .integer; } } -final class $Example$1$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Example$1$NullableType extends jni$_.JObjType { + @jni$_.internal const $Example$1$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/pkg2/Example;'; - @_$jni.internal - @_$core.override - Example$1? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Example$1? fromReference(jni$_.JReference reference) => reference.isNull ? null : Example$1.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example$1$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example$1$NullableType) && other is $Example$1$NullableType; } } -final class $Example$1$Type extends _$jni.JObjType { - @_$jni.internal +final class $Example$1$Type extends jni$_.JObjType { + @jni$_.internal const $Example$1$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/pkg2/Example;'; - @_$jni.internal - @_$core.override - Example$1 fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Example$1 fromReference(jni$_.JReference reference) => Example$1.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Example$1$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Example$1$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Example$1$Type) && other is $Example$1$Type; } } /// from: `com.github.dart_lang.jnigen.generics.GenericTypeParams` -class GenericTypeParams<$S extends _$jni.JObject?, $K extends _$jni.JObject?> - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class GenericTypeParams<$S extends jni$_.JObject?, $K extends jni$_.JObject?> + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$K> K; + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal + @jni$_.internal GenericTypeParams.fromReference( this.S, this.K, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$S, $K>(S, K), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/GenericTypeParams'); /// The type which includes information such as the signature of this class. static $GenericTypeParams$NullableType<$S, $K> - nullableType<$S extends _$jni.JObject?, $K extends _$jni.JObject?>( - _$jni.JObjType<$S> S, - _$jni.JObjType<$K> K, + nullableType<$S extends jni$_.JObject?, $K extends jni$_.JObject?>( + jni$_.JObjType<$S> S, + jni$_.JObjType<$K> K, ) { return $GenericTypeParams$NullableType<$S, $K>( S, @@ -3205,9 +3205,9 @@ class GenericTypeParams<$S extends _$jni.JObject?, $K extends _$jni.JObject?> } static $GenericTypeParams$Type<$S, $K> - type<$S extends _$jni.JObject?, $K extends _$jni.JObject?>( - _$jni.JObjType<$S> S, - _$jni.JObjType<$K> K, + type<$S extends jni$_.JObject?, $K extends jni$_.JObject?>( + jni$_.JObjType<$S> S, + jni$_.JObjType<$K> K, ) { return $GenericTypeParams$Type<$S, $K>( S, @@ -3219,55 +3219,55 @@ class GenericTypeParams<$S extends _$jni.JObject?, $K extends _$jni.JObject?> r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory GenericTypeParams({ - required _$jni.JObjType<$S> S, - required _$jni.JObjType<$K> K, + required jni$_.JObjType<$S> S, + required jni$_.JObjType<$K> K, }) { return GenericTypeParams<$S, $K>.fromReference( S, K, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $GenericTypeParams$NullableType<$S extends _$jni.JObject?, - $K extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$S> S; +final class $GenericTypeParams$NullableType<$S extends jni$_.JObject?, + $K extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$K> K; + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal + @jni$_.internal const $GenericTypeParams$NullableType( this.S, this.K, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GenericTypeParams;'; - @_$jni.internal - @_$core.override - GenericTypeParams<$S, $K>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GenericTypeParams<$S, $K>? fromReference(jni$_.JReference reference) => reference.isNull ? null : GenericTypeParams<$S, $K>.fromReference( @@ -3275,22 +3275,22 @@ final class $GenericTypeParams$NullableType<$S extends _$jni.JObject?, K, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GenericTypeParams$NullableType, S, K); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GenericTypeParams$NullableType<$S, $K>) && other is $GenericTypeParams$NullableType<$S, $K> && @@ -3299,51 +3299,51 @@ final class $GenericTypeParams$NullableType<$S extends _$jni.JObject?, } } -final class $GenericTypeParams$Type<$S extends _$jni.JObject?, - $K extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$S> S; +final class $GenericTypeParams$Type<$S extends jni$_.JObject?, + $K extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$K> K; + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal + @jni$_.internal const $GenericTypeParams$Type( this.S, this.K, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GenericTypeParams;'; - @_$jni.internal - @_$core.override - GenericTypeParams<$S, $K> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GenericTypeParams<$S, $K> fromReference(jni$_.JReference reference) => GenericTypeParams<$S, $K>.fromReference( S, K, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GenericTypeParams$NullableType<$S, $K>(S, K); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GenericTypeParams$Type, S, K); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GenericTypeParams$Type<$S, $K>) && other is $GenericTypeParams$Type<$S, $K> && @@ -3354,42 +3354,42 @@ final class $GenericTypeParams$Type<$S extends _$jni.JObject?, /// from: `com.github.dart_lang.jnigen.generics.GrandParent$Parent$Child` class GrandParent_Parent_Child< - $T extends _$jni.JObject?, - $S extends _$jni.JObject?, - $U extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; + $T extends jni$_.JObject?, + $S extends jni$_.JObject?, + $U extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal GrandParent_Parent_Child.fromReference( this.T, this.S, this.U, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T, $S, $U>(T, S, U), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/GrandParent$Parent$Child'); /// The type which includes information such as the signature of this class. static $GrandParent_Parent_Child$NullableType<$T, $S, $U> nullableType< - $T extends _$jni.JObject?, - $S extends _$jni.JObject?, - $U extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$S> S, - _$jni.JObjType<$U> U, + $T extends jni$_.JObject?, + $S extends jni$_.JObject?, + $U extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$S> S, + jni$_.JObjType<$U> U, ) { return $GrandParent_Parent_Child$NullableType<$T, $S, $U>( T, @@ -3399,12 +3399,12 @@ class GrandParent_Parent_Child< } static $GrandParent_Parent_Child$Type<$T, $S, $U> type< - $T extends _$jni.JObject?, - $S extends _$jni.JObject?, - $U extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$S> S, - _$jni.JObjType<$U> U, + $T extends jni$_.JObject?, + $S extends jni$_.JObject?, + $U extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$S> S, + jni$_.JObjType<$U> U, ) { return $GrandParent_Parent_Child$Type<$T, $S, $U>( T, @@ -3458,82 +3458,82 @@ class GrandParent_Parent_Child< r'(Lcom/github/dart_lang/jnigen/generics/GrandParent$Parent;Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.generics.GrandParent$Parent $outerClass, U object)` /// The returned object must be released after use, by calling the [release] method. factory GrandParent_Parent_Child( GrandParent_Parent<$T?, $S?> $outerClass, $U? object, { - _$jni.JObjType<$T>? T, - _$jni.JObjType<$S>? S, - required _$jni.JObjType<$U> U, + jni$_.JObjType<$T>? T, + jni$_.JObjType<$S>? S, + required jni$_.JObjType<$U> U, }) { - T ??= _$jni.lowestCommonSuperType([ + T ??= jni$_.lowestCommonSuperType([ ($outerClass.$type - as $GrandParent_Parent$Type<_$core.dynamic, _$core.dynamic>) + as $GrandParent_Parent$Type) .T, - ]) as _$jni.JObjType<$T>; - S ??= _$jni.lowestCommonSuperType([ + ]) as jni$_.JObjType<$T>; + S ??= jni$_.lowestCommonSuperType([ ($outerClass.$type - as $GrandParent_Parent$Type<_$core.dynamic, _$core.dynamic>) + as $GrandParent_Parent$Type) .S, - ]) as _$jni.JObjType<$S>; + ]) as jni$_.JObjType<$S>; final _$$outerClass = $outerClass.reference; - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return GrandParent_Parent_Child<$T, $S, $U>.fromReference( T, S, U, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$$outerClass.pointer, _$object.pointer) .reference); } } -final class $GrandParent_Parent_Child$NullableType<$T extends _$jni.JObject?, - $S extends _$jni.JObject?, $U extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GrandParent_Parent_Child$NullableType<$T extends jni$_.JObject?, + $S extends jni$_.JObject?, $U extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal const $GrandParent_Parent_Child$NullableType( this.T, this.S, this.U, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$Parent$Child;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override GrandParent_Parent_Child<$T, $S, $U>? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : GrandParent_Parent_Child<$T, $S, $U>.fromReference( @@ -3542,24 +3542,24 @@ final class $GrandParent_Parent_Child$NullableType<$T extends _$jni.JObject?, U, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_Parent_Child$NullableType, T, S, U); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_Parent_Child$NullableType<$T, $S, $U>) && @@ -3570,57 +3570,57 @@ final class $GrandParent_Parent_Child$NullableType<$T extends _$jni.JObject?, } } -final class $GrandParent_Parent_Child$Type<$T extends _$jni.JObject?, - $S extends _$jni.JObject?, $U extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GrandParent_Parent_Child$Type<$T extends jni$_.JObject?, + $S extends jni$_.JObject?, $U extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal const $GrandParent_Parent_Child$Type( this.T, this.S, this.U, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$Parent$Child;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override GrandParent_Parent_Child<$T, $S, $U> fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => GrandParent_Parent_Child<$T, $S, $U>.fromReference( T, S, U, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GrandParent_Parent_Child$NullableType<$T, $S, $U>(T, S, U); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_Parent_Child$Type, T, S, U); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_Parent_Child$Type<$T, $S, $U>) && other is $GrandParent_Parent_Child$Type<$T, $S, $U> && @@ -3631,34 +3631,34 @@ final class $GrandParent_Parent_Child$Type<$T extends _$jni.JObject?, } /// from: `com.github.dart_lang.jnigen.generics.GrandParent$Parent` -class GrandParent_Parent<$T extends _$jni.JObject?, $S extends _$jni.JObject?> - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class GrandParent_Parent<$T extends jni$_.JObject?, $S extends jni$_.JObject?> + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal + @jni$_.internal GrandParent_Parent.fromReference( this.T, this.S, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T, $S>(T, S), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/GrandParent$Parent'); /// The type which includes information such as the signature of this class. static $GrandParent_Parent$NullableType<$T, $S> - nullableType<$T extends _$jni.JObject?, $S extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$S> S, + nullableType<$T extends jni$_.JObject?, $S extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$S> S, ) { return $GrandParent_Parent$NullableType<$T, $S>( T, @@ -3667,9 +3667,9 @@ class GrandParent_Parent<$T extends _$jni.JObject?, $S extends _$jni.JObject?> } static $GrandParent_Parent$Type<$T, $S> - type<$T extends _$jni.JObject?, $S extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$S> S, + type<$T extends jni$_.JObject?, $S extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$S> S, ) { return $GrandParent_Parent$Type<$T, $S>( T, @@ -3708,68 +3708,68 @@ class GrandParent_Parent<$T extends _$jni.JObject?, $S extends _$jni.JObject?> r'(Lcom/github/dart_lang/jnigen/generics/GrandParent;Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.generics.GrandParent $outerClass, S object)` /// The returned object must be released after use, by calling the [release] method. factory GrandParent_Parent( GrandParent<$T?> $outerClass, $S? object, { - _$jni.JObjType<$T>? T, - required _$jni.JObjType<$S> S, + jni$_.JObjType<$T>? T, + required jni$_.JObjType<$S> S, }) { - T ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $GrandParent$Type<_$core.dynamic>).T, - ]) as _$jni.JObjType<$T>; + T ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $GrandParent$Type).T, + ]) as jni$_.JObjType<$T>; final _$$outerClass = $outerClass.reference; - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return GrandParent_Parent<$T, $S>.fromReference( T, S, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$$outerClass.pointer, _$object.pointer) .reference); } } -final class $GrandParent_Parent$NullableType<$T extends _$jni.JObject?, - $S extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GrandParent_Parent$NullableType<$T extends jni$_.JObject?, + $S extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal + @jni$_.internal const $GrandParent_Parent$NullableType( this.T, this.S, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$Parent;'; - @_$jni.internal - @_$core.override - GrandParent_Parent<$T, $S>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GrandParent_Parent<$T, $S>? fromReference(jni$_.JReference reference) => reference.isNull ? null : GrandParent_Parent<$T, $S>.fromReference( @@ -3777,22 +3777,22 @@ final class $GrandParent_Parent$NullableType<$T extends _$jni.JObject?, S, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_Parent$NullableType, T, S); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_Parent$NullableType<$T, $S>) && other is $GrandParent_Parent$NullableType<$T, $S> && @@ -3801,51 +3801,51 @@ final class $GrandParent_Parent$NullableType<$T extends _$jni.JObject?, } } -final class $GrandParent_Parent$Type<$T extends _$jni.JObject?, - $S extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GrandParent_Parent$Type<$T extends jni$_.JObject?, + $S extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal + @jni$_.internal const $GrandParent_Parent$Type( this.T, this.S, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$Parent;'; - @_$jni.internal - @_$core.override - GrandParent_Parent<$T, $S> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GrandParent_Parent<$T, $S> fromReference(jni$_.JReference reference) => GrandParent_Parent<$T, $S>.fromReference( T, S, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GrandParent_Parent$NullableType<$T, $S>(T, S); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_Parent$Type, T, S); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_Parent$Type<$T, $S>) && other is $GrandParent_Parent$Type<$T, $S> && @@ -3855,34 +3855,34 @@ final class $GrandParent_Parent$Type<$T extends _$jni.JObject?, } /// from: `com.github.dart_lang.jnigen.generics.GrandParent$StaticParent$Child` -class GrandParent_StaticParent_Child<$S extends _$jni.JObject?, - $U extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class GrandParent_StaticParent_Child<$S extends jni$_.JObject?, + $U extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal GrandParent_StaticParent_Child.fromReference( this.S, this.U, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$S, $U>(S, U), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/GrandParent$StaticParent$Child'); /// The type which includes information such as the signature of this class. static $GrandParent_StaticParent_Child$NullableType<$S, $U> - nullableType<$S extends _$jni.JObject?, $U extends _$jni.JObject?>( - _$jni.JObjType<$S> S, - _$jni.JObjType<$U> U, + nullableType<$S extends jni$_.JObject?, $U extends jni$_.JObject?>( + jni$_.JObjType<$S> S, + jni$_.JObjType<$U> U, ) { return $GrandParent_StaticParent_Child$NullableType<$S, $U>( S, @@ -3891,9 +3891,9 @@ class GrandParent_StaticParent_Child<$S extends _$jni.JObject?, } static $GrandParent_StaticParent_Child$Type<$S, $U> - type<$S extends _$jni.JObject?, $U extends _$jni.JObject?>( - _$jni.JObjType<$S> S, - _$jni.JObjType<$U> U, + type<$S extends jni$_.JObject?, $U extends jni$_.JObject?>( + jni$_.JObjType<$S> S, + jni$_.JObjType<$U> U, ) { return $GrandParent_StaticParent_Child$Type<$S, $U>( S, @@ -3932,24 +3932,24 @@ class GrandParent_StaticParent_Child<$S extends _$jni.JObject?, r'(Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent;Ljava/lang/Object;Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.generics.GrandParent$StaticParent $outerClass, S object, U object1)` /// The returned object must be released after use, by calling the [release] method. @@ -3957,48 +3957,48 @@ class GrandParent_StaticParent_Child<$S extends _$jni.JObject?, GrandParent_StaticParent<$S?> $outerClass, $S? object, $U? object1, { - _$jni.JObjType<$S>? S, - required _$jni.JObjType<$U> U, + jni$_.JObjType<$S>? S, + required jni$_.JObjType<$U> U, }) { - S ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $GrandParent_StaticParent$Type<_$core.dynamic>).S, - ]) as _$jni.JObjType<$S>; + S ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $GrandParent_StaticParent$Type).S, + ]) as jni$_.JObjType<$S>; final _$$outerClass = $outerClass.reference; - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; return GrandParent_StaticParent_Child<$S, $U>.fromReference( S, U, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$$outerClass.pointer, _$object.pointer, _$object1.pointer) .reference); } } final class $GrandParent_StaticParent_Child$NullableType< - $S extends _$jni.JObject?, $U extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$S> S; + $S extends jni$_.JObject?, $U extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal const $GrandParent_StaticParent_Child$NullableType( this.S, this.U, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent$Child;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override GrandParent_StaticParent_Child<$S, $U>? fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => reference.isNull ? null : GrandParent_StaticParent_Child<$S, $U>.fromReference( @@ -4006,24 +4006,24 @@ final class $GrandParent_StaticParent_Child$NullableType< U, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_StaticParent_Child$NullableType, S, U); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_StaticParent_Child$NullableType<$S, $U>) && @@ -4033,52 +4033,52 @@ final class $GrandParent_StaticParent_Child$NullableType< } } -final class $GrandParent_StaticParent_Child$Type<$S extends _$jni.JObject?, - $U extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$S> S; +final class $GrandParent_StaticParent_Child$Type<$S extends jni$_.JObject?, + $U extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal + @jni$_.internal const $GrandParent_StaticParent_Child$Type( this.S, this.U, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent$Child;'; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override GrandParent_StaticParent_Child<$S, $U> fromReference( - _$jni.JReference reference) => + jni$_.JReference reference) => GrandParent_StaticParent_Child<$S, $U>.fromReference( S, U, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GrandParent_StaticParent_Child$NullableType<$S, $U>(S, U); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_StaticParent_Child$Type, S, U); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_StaticParent_Child$Type<$S, $U>) && @@ -4089,37 +4089,37 @@ final class $GrandParent_StaticParent_Child$Type<$S extends _$jni.JObject?, } /// from: `com.github.dart_lang.jnigen.generics.GrandParent$StaticParent` -class GrandParent_StaticParent<$S extends _$jni.JObject?> - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class GrandParent_StaticParent<$S extends jni$_.JObject?> + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$S> S; + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal + @jni$_.internal GrandParent_StaticParent.fromReference( this.S, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$S>(S), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/GrandParent$StaticParent'); /// The type which includes information such as the signature of this class. static $GrandParent_StaticParent$NullableType<$S> - nullableType<$S extends _$jni.JObject?>( - _$jni.JObjType<$S> S, + nullableType<$S extends jni$_.JObject?>( + jni$_.JObjType<$S> S, ) { return $GrandParent_StaticParent$NullableType<$S>( S, ); } - static $GrandParent_StaticParent$Type<$S> type<$S extends _$jni.JObject?>( - _$jni.JObjType<$S> S, + static $GrandParent_StaticParent$Type<$S> type<$S extends jni$_.JObject?>( + jni$_.JObjType<$S> S, ) { return $GrandParent_StaticParent$Type<$S>( S, @@ -4143,72 +4143,72 @@ class GrandParent_StaticParent<$S extends _$jni.JObject?> r'(Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (S object)` /// The returned object must be released after use, by calling the [release] method. factory GrandParent_StaticParent( $S? object, { - required _$jni.JObjType<$S> S, + required jni$_.JObjType<$S> S, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return GrandParent_StaticParent<$S>.fromReference( S, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$object.pointer) .reference); } } -final class $GrandParent_StaticParent$NullableType<$S extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$S> S; +final class $GrandParent_StaticParent$NullableType<$S extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal + @jni$_.internal const $GrandParent_StaticParent$NullableType( this.S, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent;'; - @_$jni.internal - @_$core.override - GrandParent_StaticParent<$S>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GrandParent_StaticParent<$S>? fromReference(jni$_.JReference reference) => reference.isNull ? null : GrandParent_StaticParent<$S>.fromReference( S, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_StaticParent$NullableType, S); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_StaticParent$NullableType<$S>) && other is $GrandParent_StaticParent$NullableType<$S> && @@ -4216,45 +4216,45 @@ final class $GrandParent_StaticParent$NullableType<$S extends _$jni.JObject?> } } -final class $GrandParent_StaticParent$Type<$S extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$S> S; +final class $GrandParent_StaticParent$Type<$S extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$S> S; - @_$jni.internal + @jni$_.internal const $GrandParent_StaticParent$Type( this.S, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent;'; - @_$jni.internal - @_$core.override - GrandParent_StaticParent<$S> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GrandParent_StaticParent<$S> fromReference(jni$_.JReference reference) => GrandParent_StaticParent<$S>.fromReference( S, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GrandParent_StaticParent$NullableType<$S>(S); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent_StaticParent$Type, S); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent_StaticParent$Type<$S>) && other is $GrandParent_StaticParent$Type<$S> && @@ -4263,35 +4263,35 @@ final class $GrandParent_StaticParent$Type<$S extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.generics.GrandParent` -class GrandParent<$T extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class GrandParent<$T extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal GrandParent.fromReference( this.T, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T>(T), super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/generics/GrandParent'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/generics/GrandParent'); /// The type which includes information such as the signature of this class. - static $GrandParent$NullableType<$T> nullableType<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $GrandParent$NullableType<$T> nullableType<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $GrandParent$NullableType<$T>( T, ); } - static $GrandParent$Type<$T> type<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $GrandParent$Type<$T> type<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $GrandParent$Type<$T>( T, @@ -4315,27 +4315,27 @@ class GrandParent<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (T object)` /// The returned object must be released after use, by calling the [release] method. factory GrandParent( $T? object, { - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return GrandParent<$T>.fromReference( T, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$object.pointer) .reference); } @@ -4345,26 +4345,26 @@ class GrandParent<$T extends _$jni.JObject?> extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/generics/GrandParent$Parent;', ); - static final _stringParent = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _stringParent = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.github.dart_lang.jnigen.generics.GrandParent.Parent stringParent()` /// The returned object must be released after use, by calling the [release] method. - GrandParent_Parent<$T?, _$jni.JString?>? stringParent() { + GrandParent_Parent<$T?, jni$_.JString?>? stringParent() { return _stringParent( - reference.pointer, _id_stringParent as _$jni.JMethodIDPtr) - .object?>( - $GrandParent_Parent$NullableType<$T?, _$jni.JString?>( - T.nullableType, const _$jni.JStringNullableType())); + reference.pointer, _id_stringParent as jni$_.JMethodIDPtr) + .object?>( + $GrandParent_Parent$NullableType<$T?, jni$_.JString?>( + T.nullableType, const jni$_.JStringNullableType())); } static final _id_varParent = _class.instanceMethodId( @@ -4372,25 +4372,25 @@ class GrandParent<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)Lcom/github/dart_lang/jnigen/generics/GrandParent$Parent;', ); - static final _varParent = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _varParent = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public com.github.dart_lang.jnigen.generics.GrandParent.Parent varParent(S object)` /// The returned object must be released after use, by calling the [release] method. - GrandParent_Parent<$T?, $S?>? varParent<$S extends _$jni.JObject?>( + GrandParent_Parent<$T?, $S?>? varParent<$S extends jni$_.JObject?>( $S? object, { - required _$jni.JObjType<$S> S, + required jni$_.JObjType<$S> S, }) { - final _$object = object?.reference ?? _$jni.jNullReference; - return _varParent(reference.pointer, _id_varParent as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + return _varParent(reference.pointer, _id_varParent as jni$_.JMethodIDPtr, _$object.pointer) .object?>( $GrandParent_Parent$NullableType<$T?, $S?>( @@ -4402,26 +4402,26 @@ class GrandParent<$T extends _$jni.JObject?> extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent;', ); - static final _stringStaticParent = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _stringStaticParent = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.github.dart_lang.jnigen.generics.GrandParent$StaticParent stringStaticParent()` /// The returned object must be released after use, by calling the [release] method. - static GrandParent_StaticParent<_$jni.JString?>? stringStaticParent() { + static GrandParent_StaticParent? stringStaticParent() { return _stringStaticParent(_class.reference.pointer, - _id_stringStaticParent as _$jni.JMethodIDPtr) - .object?>( - const $GrandParent_StaticParent$NullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + _id_stringStaticParent as jni$_.JMethodIDPtr) + .object?>( + const $GrandParent_StaticParent$NullableType( + jni$_.JStringNullableType())); } static final _id_varStaticParent = _class.staticMethodId( @@ -4429,27 +4429,27 @@ class GrandParent<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent;', ); - static final _varStaticParent = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _varStaticParent = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.generics.GrandParent$StaticParent varStaticParent(S object)` /// The returned object must be released after use, by calling the [release] method. static GrandParent_StaticParent<$S?>? - varStaticParent<$S extends _$jni.JObject?>( + varStaticParent<$S extends jni$_.JObject?>( $S? object, { - required _$jni.JObjType<$S> S, + required jni$_.JObjType<$S> S, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _varStaticParent(_class.reference.pointer, - _id_varStaticParent as _$jni.JMethodIDPtr, _$object.pointer) + _id_varStaticParent as jni$_.JMethodIDPtr, _$object.pointer) .object?>( $GrandParent_StaticParent$NullableType<$S?>(S.nullableType)); } @@ -4459,66 +4459,66 @@ class GrandParent<$T extends _$jni.JObject?> extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/generics/GrandParent$StaticParent;', ); - static final _staticParentWithSameType = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _staticParentWithSameType = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.github.dart_lang.jnigen.generics.GrandParent$StaticParent staticParentWithSameType()` /// The returned object must be released after use, by calling the [release] method. GrandParent_StaticParent<$T?>? staticParentWithSameType() { return _staticParentWithSameType(reference.pointer, - _id_staticParentWithSameType as _$jni.JMethodIDPtr) + _id_staticParentWithSameType as jni$_.JMethodIDPtr) .object?>( $GrandParent_StaticParent$NullableType<$T?>(T.nullableType)); } } -final class $GrandParent$NullableType<$T extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GrandParent$NullableType<$T extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $GrandParent$NullableType( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent;'; - @_$jni.internal - @_$core.override - GrandParent<$T>? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + GrandParent<$T>? fromReference(jni$_.JReference reference) => reference.isNull ? null : GrandParent<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent$NullableType, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent$NullableType<$T>) && other is $GrandParent$NullableType<$T> && @@ -4526,44 +4526,44 @@ final class $GrandParent$NullableType<$T extends _$jni.JObject?> } } -final class $GrandParent$Type<$T extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GrandParent$Type<$T extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $GrandParent$Type( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/GrandParent;'; - @_$jni.internal - @_$core.override - GrandParent<$T> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GrandParent<$T> fromReference(jni$_.JReference reference) => GrandParent<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GrandParent$NullableType<$T>(T); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GrandParent$Type, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GrandParent$Type<$T>) && other is $GrandParent$Type<$T> && @@ -4572,34 +4572,34 @@ final class $GrandParent$Type<$T extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.generics.MyMap$MyEntry` -class MyMap_MyEntry<$K extends _$jni.JObject?, $V extends _$jni.JObject?> - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class MyMap_MyEntry<$K extends jni$_.JObject?, $V extends jni$_.JObject?> + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$K> K; + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal MyMap_MyEntry.fromReference( this.K, this.V, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$K, $V>(K, V), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/MyMap$MyEntry'); /// The type which includes information such as the signature of this class. static $MyMap_MyEntry$NullableType<$K, $V> - nullableType<$K extends _$jni.JObject?, $V extends _$jni.JObject?>( - _$jni.JObjType<$K> K, - _$jni.JObjType<$V> V, + nullableType<$K extends jni$_.JObject?, $V extends jni$_.JObject?>( + jni$_.JObjType<$K> K, + jni$_.JObjType<$V> V, ) { return $MyMap_MyEntry$NullableType<$K, $V>( K, @@ -4608,9 +4608,9 @@ class MyMap_MyEntry<$K extends _$jni.JObject?, $V extends _$jni.JObject?> } static $MyMap_MyEntry$Type<$K, $V> - type<$K extends _$jni.JObject?, $V extends _$jni.JObject?>( - _$jni.JObjType<$K> K, - _$jni.JObjType<$V> V, + type<$K extends jni$_.JObject?, $V extends jni$_.JObject?>( + jni$_.JObjType<$K> K, + jni$_.JObjType<$V> V, ) { return $MyMap_MyEntry$Type<$K, $V>( K, @@ -4648,24 +4648,24 @@ class MyMap_MyEntry<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Lcom/github/dart_lang/jnigen/generics/MyMap;Ljava/lang/Object;Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.generics.MyMap $outerClass, K object, V object1)` /// The returned object must be released after use, by calling the [release] method. @@ -4673,49 +4673,49 @@ class MyMap_MyEntry<$K extends _$jni.JObject?, $V extends _$jni.JObject?> MyMap<$K?, $V?> $outerClass, $K? object, $V? object1, { - _$jni.JObjType<$K>? K, - _$jni.JObjType<$V>? V, + jni$_.JObjType<$K>? K, + jni$_.JObjType<$V>? V, }) { - K ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $MyMap$Type<_$core.dynamic, _$core.dynamic>).K, - ]) as _$jni.JObjType<$K>; - V ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $MyMap$Type<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + K ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $MyMap$Type).K, + ]) as jni$_.JObjType<$K>; + V ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $MyMap$Type).V, + ]) as jni$_.JObjType<$V>; final _$$outerClass = $outerClass.reference; - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; return MyMap_MyEntry<$K, $V>.fromReference( K, V, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$$outerClass.pointer, _$object.pointer, _$object1.pointer) .reference); } } -final class $MyMap_MyEntry$NullableType<$K extends _$jni.JObject?, - $V extends _$jni.JObject?> extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $MyMap_MyEntry$NullableType<$K extends jni$_.JObject?, + $V extends jni$_.JObject?> extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $MyMap_MyEntry$NullableType( this.K, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/MyMap$MyEntry;'; - @_$jni.internal - @_$core.override - MyMap_MyEntry<$K, $V>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyMap_MyEntry<$K, $V>? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyMap_MyEntry<$K, $V>.fromReference( @@ -4723,22 +4723,22 @@ final class $MyMap_MyEntry$NullableType<$K extends _$jni.JObject?, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyMap_MyEntry$NullableType, K, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyMap_MyEntry$NullableType<$K, $V>) && other is $MyMap_MyEntry$NullableType<$K, $V> && @@ -4747,50 +4747,50 @@ final class $MyMap_MyEntry$NullableType<$K extends _$jni.JObject?, } } -final class $MyMap_MyEntry$Type<$K extends _$jni.JObject?, - $V extends _$jni.JObject?> extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $MyMap_MyEntry$Type<$K extends jni$_.JObject?, + $V extends jni$_.JObject?> extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $MyMap_MyEntry$Type( this.K, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/MyMap$MyEntry;'; - @_$jni.internal - @_$core.override - MyMap_MyEntry<$K, $V> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyMap_MyEntry<$K, $V> fromReference(jni$_.JReference reference) => MyMap_MyEntry<$K, $V>.fromReference( K, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $MyMap_MyEntry$NullableType<$K, $V>(K, V); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyMap_MyEntry$Type, K, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyMap_MyEntry$Type<$K, $V>) && other is $MyMap_MyEntry$Type<$K, $V> && @@ -4800,34 +4800,34 @@ final class $MyMap_MyEntry$Type<$K extends _$jni.JObject?, } /// from: `com.github.dart_lang.jnigen.generics.MyMap` -class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> - extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class MyMap<$K extends jni$_.JObject?, $V extends jni$_.JObject?> + extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$K> K; + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal MyMap.fromReference( this.K, this.V, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$K, $V>(K, V), super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/generics/MyMap'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/generics/MyMap'); /// The type which includes information such as the signature of this class. static $MyMap$NullableType<$K, $V> - nullableType<$K extends _$jni.JObject?, $V extends _$jni.JObject?>( - _$jni.JObjType<$K> K, - _$jni.JObjType<$V> V, + nullableType<$K extends jni$_.JObject?, $V extends jni$_.JObject?>( + jni$_.JObjType<$K> K, + jni$_.JObjType<$V> V, ) { return $MyMap$NullableType<$K, $V>( K, @@ -4836,9 +4836,9 @@ class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> } static $MyMap$Type<$K, $V> - type<$K extends _$jni.JObject?, $V extends _$jni.JObject?>( - _$jni.JObjType<$K> K, - _$jni.JObjType<$V> V, + type<$K extends jni$_.JObject?, $V extends jni$_.JObject?>( + jni$_.JObjType<$K> K, + jni$_.JObjType<$V> V, ) { return $MyMap$Type<$K, $V>( K, @@ -4850,28 +4850,28 @@ class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory MyMap({ - required _$jni.JObjType<$K> K, - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$K> K, + required jni$_.JObjType<$V> V, }) { return MyMap<$K, $V>.fromReference( K, V, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -4880,25 +4880,25 @@ class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _get = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _get = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V get(K object)` /// The returned object must be released after use, by calling the [release] method. $V? get( $K? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _get( - reference.pointer, _id_get as _$jni.JMethodIDPtr, _$object.pointer) + reference.pointer, _id_get as jni$_.JMethodIDPtr, _$object.pointer) .object<$V?>(V.nullableType); } @@ -4907,22 +4907,22 @@ class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _put = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _put = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public V put(K object, V object1)` /// The returned object must be released after use, by calling the [release] method. @@ -4930,9 +4930,9 @@ class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> $K? object, $V? object1, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - return _put(reference.pointer, _id_put as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + return _put(reference.pointer, _id_put as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) .object<$V?>(V.nullableType); } @@ -4942,22 +4942,22 @@ class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> r'()Lcom/github/dart_lang/jnigen/generics/MyStack;', ); - static final _entryStack = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _entryStack = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.github.dart_lang.jnigen.generics.MyStack entryStack()` /// The returned object must be released after use, by calling the [release] method. MyStack?>? entryStack() { - return _entryStack(reference.pointer, _id_entryStack as _$jni.JMethodIDPtr) + return _entryStack(reference.pointer, _id_entryStack as jni$_.JMethodIDPtr) .object?>?>( $MyStack$NullableType?>( $MyMap_MyEntry$NullableType<$K?, $V?>( @@ -4965,49 +4965,49 @@ class MyMap<$K extends _$jni.JObject?, $V extends _$jni.JObject?> } } -final class $MyMap$NullableType<$K extends _$jni.JObject?, - $V extends _$jni.JObject?> extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $MyMap$NullableType<$K extends jni$_.JObject?, + $V extends jni$_.JObject?> extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $MyMap$NullableType( this.K, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/MyMap;'; - @_$jni.internal - @_$core.override - MyMap<$K, $V>? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + MyMap<$K, $V>? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyMap<$K, $V>.fromReference( K, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyMap$NullableType, K, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyMap$NullableType<$K, $V>) && other is $MyMap$NullableType<$K, $V> && @@ -5016,49 +5016,49 @@ final class $MyMap$NullableType<$K extends _$jni.JObject?, } } -final class $MyMap$Type<$K extends _$jni.JObject?, $V extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $MyMap$Type<$K extends jni$_.JObject?, $V extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $MyMap$Type( this.K, this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/MyMap;'; - @_$jni.internal - @_$core.override - MyMap<$K, $V> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyMap<$K, $V> fromReference(jni$_.JReference reference) => MyMap<$K, $V>.fromReference( K, V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $MyMap$NullableType<$K, $V>(K, V); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyMap$Type, K, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyMap$Type<$K, $V>) && other is $MyMap$Type<$K, $V> && @@ -5068,35 +5068,35 @@ final class $MyMap$Type<$K extends _$jni.JObject?, $V extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.generics.MyStack` -class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class MyStack<$T extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal MyStack.fromReference( this.T, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T>(T), super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/generics/MyStack'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/generics/MyStack'); /// The type which includes information such as the signature of this class. - static $MyStack$NullableType<$T> nullableType<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $MyStack$NullableType<$T> nullableType<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $MyStack$NullableType<$T>( T, ); } - static $MyStack$Type<$T> type<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $MyStack$Type<$T> type<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $MyStack$Type<$T>( T, @@ -5107,26 +5107,26 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory MyStack({ - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { return MyStack<$T>.fromReference( T, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -5135,26 +5135,26 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'([Ljava/lang/Object;)Lcom/github/dart_lang/jnigen/generics/MyStack;', ); - static final _fromArray = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _fromArray = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.generics.MyStack fromArray(java.lang.Object[] objects)` /// The returned object must be released after use, by calling the [release] method. - static MyStack<$T?>? fromArray<$T extends _$jni.JObject?>( - _$jni.JArray<$T?>? objects, { - required _$jni.JObjType<$T> T, + static MyStack<$T?>? fromArray<$T extends jni$_.JObject?>( + jni$_.JArray<$T?>? objects, { + required jni$_.JObjType<$T> T, }) { - final _$objects = objects?.reference ?? _$jni.jNullReference; + final _$objects = objects?.reference ?? jni$_.jNullReference; return _fromArray(_class.reference.pointer, - _id_fromArray as _$jni.JMethodIDPtr, _$objects.pointer) + _id_fromArray as jni$_.JMethodIDPtr, _$objects.pointer) .object?>($MyStack$NullableType<$T?>(T.nullableType)); } @@ -5164,28 +5164,28 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { ); static final _fromArrayOfArrayOfGrandParents = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.generics.MyStack fromArrayOfArrayOfGrandParents(java.lang.Object[] grandParents)` /// The returned object must be released after use, by calling the [release] method. static MyStack<$S?>? - fromArrayOfArrayOfGrandParents<$S extends _$jni.JObject?>( - _$jni.JArray<_$jni.JArray?>?>? grandParents, { - required _$jni.JObjType<$S> S, + fromArrayOfArrayOfGrandParents<$S extends jni$_.JObject?>( + jni$_.JArray?>?>? grandParents, { + required jni$_.JObjType<$S> S, }) { - final _$grandParents = grandParents?.reference ?? _$jni.jNullReference; + final _$grandParents = grandParents?.reference ?? jni$_.jNullReference; return _fromArrayOfArrayOfGrandParents( _class.reference.pointer, - _id_fromArrayOfArrayOfGrandParents as _$jni.JMethodIDPtr, + _id_fromArrayOfArrayOfGrandParents as jni$_.JMethodIDPtr, _$grandParents.pointer) .object?>($MyStack$NullableType<$S?>(S.nullableType)); } @@ -5195,24 +5195,24 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/generics/MyStack;', ); - static final _of = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _of = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.github.dart_lang.jnigen.generics.MyStack of()` /// The returned object must be released after use, by calling the [release] method. - static MyStack<$T?>? of<$T extends _$jni.JObject?>({ - required _$jni.JObjType<$T> T, + static MyStack<$T?>? of<$T extends jni$_.JObject?>({ + required jni$_.JObjType<$T> T, }) { - return _of(_class.reference.pointer, _id_of as _$jni.JMethodIDPtr) + return _of(_class.reference.pointer, _id_of as jni$_.JMethodIDPtr) .object?>($MyStack$NullableType<$T?>(T.nullableType)); } @@ -5221,25 +5221,25 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)Lcom/github/dart_lang/jnigen/generics/MyStack;', ); - static final _of$1 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _of$1 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.generics.MyStack of(T object)` /// The returned object must be released after use, by calling the [release] method. - static MyStack<$T?>? of$1<$T extends _$jni.JObject?>( + static MyStack<$T?>? of$1<$T extends jni$_.JObject?>( $T? object, { - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { - final _$object = object?.reference ?? _$jni.jNullReference; - return _of$1(_class.reference.pointer, _id_of$1 as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + return _of$1(_class.reference.pointer, _id_of$1 as jni$_.JMethodIDPtr, _$object.pointer) .object?>($MyStack$NullableType<$T?>(T.nullableType)); } @@ -5249,33 +5249,33 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;Ljava/lang/Object;)Lcom/github/dart_lang/jnigen/generics/MyStack;', ); - static final _of$2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _of$2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.generics.MyStack of(T object, T object1)` /// The returned object must be released after use, by calling the [release] method. - static MyStack<$T?>? of$2<$T extends _$jni.JObject?>( + static MyStack<$T?>? of$2<$T extends jni$_.JObject?>( $T? object, $T? object1, { - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - return _of$2(_class.reference.pointer, _id_of$2 as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + return _of$2(_class.reference.pointer, _id_of$2 as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) .object?>($MyStack$NullableType<$T?>(T.nullableType)); } @@ -5285,23 +5285,23 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)V', ); - static final _push = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _push = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void push(T object)` void push( $T? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - _push(reference.pointer, _id_push as _$jni.JMethodIDPtr, _$object.pointer) + final _$object = object?.reference ?? jni$_.jNullReference; + _push(reference.pointer, _id_push as jni$_.JMethodIDPtr, _$object.pointer) .check(); } @@ -5310,22 +5310,22 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'()Ljava/lang/Object;', ); - static final _pop = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _pop = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public T pop()` /// The returned object must be released after use, by calling the [release] method. $T? pop() { - return _pop(reference.pointer, _id_pop as _$jni.JMethodIDPtr) + return _pop(reference.pointer, _id_pop as jni$_.JMethodIDPtr) .object<$T?>(T.nullableType); } @@ -5334,62 +5334,62 @@ class MyStack<$T extends _$jni.JObject?> extends _$jni.JObject { r'()I', ); - static final _size = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _size = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public int size()` int size() { - return _size(reference.pointer, _id_size as _$jni.JMethodIDPtr).integer; + return _size(reference.pointer, _id_size as jni$_.JMethodIDPtr).integer; } } -final class $MyStack$NullableType<$T extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $MyStack$NullableType<$T extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $MyStack$NullableType( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/MyStack;'; - @_$jni.internal - @_$core.override - MyStack<$T>? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + MyStack<$T>? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyStack<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyStack$NullableType, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyStack$NullableType<$T>) && other is $MyStack$NullableType<$T> && @@ -5397,43 +5397,43 @@ final class $MyStack$NullableType<$T extends _$jni.JObject?> } } -final class $MyStack$Type<$T extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $MyStack$Type<$T extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $MyStack$Type( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/MyStack;'; - @_$jni.internal - @_$core.override - MyStack<$T> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyStack<$T> fromReference(jni$_.JReference reference) => MyStack<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => $MyStack$NullableType<$T>(T); + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $MyStack$NullableType<$T>(T); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyStack$Type, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyStack$Type<$T>) && other is $MyStack$Type<$T> && @@ -5442,38 +5442,38 @@ final class $MyStack$Type<$T extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.generics.StringKeyedMap` -class StringKeyedMap<$V extends _$jni.JObject?> - extends MyMap<_$jni.JString?, $V?> { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class StringKeyedMap<$V extends jni$_.JObject?> + extends MyMap { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal StringKeyedMap.fromReference( this.V, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$V>(V), super.fromReference( - const _$jni.JStringNullableType(), V.nullableType, reference); + const jni$_.JStringNullableType(), V.nullableType, reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/StringKeyedMap'); /// The type which includes information such as the signature of this class. static $StringKeyedMap$NullableType<$V> - nullableType<$V extends _$jni.JObject?>( - _$jni.JObjType<$V> V, + nullableType<$V extends jni$_.JObject?>( + jni$_.JObjType<$V> V, ) { return $StringKeyedMap$NullableType<$V>( V, ); } - static $StringKeyedMap$Type<$V> type<$V extends _$jni.JObject?>( - _$jni.JObjType<$V> V, + static $StringKeyedMap$Type<$V> type<$V extends jni$_.JObject?>( + jni$_.JObjType<$V> V, ) { return $StringKeyedMap$Type<$V>( V, @@ -5484,71 +5484,71 @@ class StringKeyedMap<$V extends _$jni.JObject?> r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory StringKeyedMap({ - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { return StringKeyedMap<$V>.fromReference( V, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $StringKeyedMap$NullableType<$V extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$V> V; +final class $StringKeyedMap$NullableType<$V extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $StringKeyedMap$NullableType( this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringKeyedMap;'; - @_$jni.internal - @_$core.override - StringKeyedMap<$V>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringKeyedMap<$V>? fromReference(jni$_.JReference reference) => reference.isNull ? null : StringKeyedMap<$V>.fromReference( V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => $MyMap$NullableType<_$jni.JString?, $V?>( - const _$jni.JStringNullableType(), V.nullableType); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => $MyMap$NullableType( + const jni$_.JStringNullableType(), V.nullableType); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => Object.hash($StringKeyedMap$NullableType, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringKeyedMap$NullableType<$V>) && other is $StringKeyedMap$NullableType<$V> && @@ -5556,46 +5556,46 @@ final class $StringKeyedMap$NullableType<$V extends _$jni.JObject?> } } -final class $StringKeyedMap$Type<$V extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$V> V; +final class $StringKeyedMap$Type<$V extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $StringKeyedMap$Type( this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringKeyedMap;'; - @_$jni.internal - @_$core.override - StringKeyedMap<$V> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringKeyedMap<$V> fromReference(jni$_.JReference reference) => StringKeyedMap<$V>.fromReference( V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => $MyMap$NullableType<_$jni.JString?, $V?>( - const _$jni.JStringNullableType(), V.nullableType); - - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => $MyMap$NullableType( + const jni$_.JStringNullableType(), V.nullableType); + + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $StringKeyedMap$NullableType<$V>(V); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => Object.hash($StringKeyedMap$Type, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringKeyedMap$Type<$V>) && other is $StringKeyedMap$Type<$V> && @@ -5604,19 +5604,19 @@ final class $StringKeyedMap$Type<$V extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.generics.StringMap` -class StringMap extends StringKeyedMap<_$jni.JString?> { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class StringMap extends StringKeyedMap { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal StringMap.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, - super.fromReference(const _$jni.JStringNullableType(), reference); + super.fromReference(const jni$_.JStringNullableType(), reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/generics/StringMap'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/generics/StringMap'); /// The type which includes information such as the signature of this class. static const nullableType = $StringMap$NullableType(); @@ -5625,118 +5625,118 @@ class StringMap extends StringKeyedMap<_$jni.JString?> { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory StringMap() { return StringMap.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $StringMap$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $StringMap$NullableType extends jni$_.JObjType { + @jni$_.internal const $StringMap$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringMap;'; - @_$jni.internal - @_$core.override - StringMap? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + StringMap? fromReference(jni$_.JReference reference) => reference.isNull ? null : StringMap.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => - const $StringKeyedMap$NullableType<_$jni.JString?>( - _$jni.JStringNullableType()); - - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; - - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => + const $StringKeyedMap$NullableType( + jni$_.JStringNullableType()); + + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; + + @jni$_.internal + @core$_.override final superCount = 3; - @_$core.override + @core$_.override int get hashCode => ($StringMap$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringMap$NullableType) && other is $StringMap$NullableType; } } -final class $StringMap$Type extends _$jni.JObjType { - @_$jni.internal +final class $StringMap$Type extends jni$_.JObjType { + @jni$_.internal const $StringMap$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringMap;'; - @_$jni.internal - @_$core.override - StringMap fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringMap fromReference(jni$_.JReference reference) => StringMap.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => - const $StringKeyedMap$NullableType<_$jni.JString?>( - _$jni.JStringNullableType()); - - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => + const $StringKeyedMap$NullableType( + jni$_.JStringNullableType()); + + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $StringMap$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 3; - @_$core.override + @core$_.override int get hashCode => ($StringMap$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringMap$Type) && other is $StringMap$Type; } } /// from: `com.github.dart_lang.jnigen.generics.StringStack` -class StringStack extends MyStack<_$jni.JString?> { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class StringStack extends MyStack { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal StringStack.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, - super.fromReference(const _$jni.JStringNullableType(), reference); + super.fromReference(const jni$_.JStringNullableType(), reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/generics/StringStack'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/generics/StringStack'); /// The type which includes information such as the signature of this class. static const nullableType = $StringStack$NullableType(); @@ -5745,97 +5745,97 @@ class StringStack extends MyStack<_$jni.JString?> { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory StringStack() { return StringStack.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $StringStack$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $StringStack$NullableType extends jni$_.JObjType { + @jni$_.internal const $StringStack$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringStack;'; - @_$jni.internal - @_$core.override - StringStack? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + StringStack? fromReference(jni$_.JReference reference) => reference.isNull ? null : StringStack.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => - const $MyStack$NullableType<_$jni.JString?>(_$jni.JStringNullableType()); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => + const $MyStack$NullableType(jni$_.JStringNullableType()); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($StringStack$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringStack$NullableType) && other is $StringStack$NullableType; } } -final class $StringStack$Type extends _$jni.JObjType { - @_$jni.internal +final class $StringStack$Type extends jni$_.JObjType { + @jni$_.internal const $StringStack$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringStack;'; - @_$jni.internal - @_$core.override - StringStack fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringStack fromReference(jni$_.JReference reference) => StringStack.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => - const $MyStack$NullableType<_$jni.JString?>(_$jni.JStringNullableType()); - - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => + const $MyStack$NullableType(jni$_.JStringNullableType()); + + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $StringStack$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($StringStack$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringStack$Type) && other is $StringStack$Type; @@ -5843,38 +5843,38 @@ final class $StringStack$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.generics.StringValuedMap` -class StringValuedMap<$K extends _$jni.JObject?> - extends MyMap<$K?, _$jni.JString?> { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class StringValuedMap<$K extends jni$_.JObject?> + extends MyMap<$K?, jni$_.JString?> { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$K> K; + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal + @jni$_.internal StringValuedMap.fromReference( this.K, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$K>(K), super.fromReference( - K.nullableType, const _$jni.JStringNullableType(), reference); + K.nullableType, const jni$_.JStringNullableType(), reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/generics/StringValuedMap'); /// The type which includes information such as the signature of this class. static $StringValuedMap$NullableType<$K> - nullableType<$K extends _$jni.JObject?>( - _$jni.JObjType<$K> K, + nullableType<$K extends jni$_.JObject?>( + jni$_.JObjType<$K> K, ) { return $StringValuedMap$NullableType<$K>( K, ); } - static $StringValuedMap$Type<$K> type<$K extends _$jni.JObject?>( - _$jni.JObjType<$K> K, + static $StringValuedMap$Type<$K> type<$K extends jni$_.JObject?>( + jni$_.JObjType<$K> K, ) { return $StringValuedMap$Type<$K>( K, @@ -5885,71 +5885,71 @@ class StringValuedMap<$K extends _$jni.JObject?> r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory StringValuedMap({ - required _$jni.JObjType<$K> K, + required jni$_.JObjType<$K> K, }) { return StringValuedMap<$K>.fromReference( K, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $StringValuedMap$NullableType<$K extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $StringValuedMap$NullableType<$K extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal + @jni$_.internal const $StringValuedMap$NullableType( this.K, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringValuedMap;'; - @_$jni.internal - @_$core.override - StringValuedMap<$K>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringValuedMap<$K>? fromReference(jni$_.JReference reference) => reference.isNull ? null : StringValuedMap<$K>.fromReference( K, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => $MyMap$NullableType<$K?, _$jni.JString?>( - K.nullableType, const _$jni.JStringNullableType()); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => $MyMap$NullableType<$K?, jni$_.JString?>( + K.nullableType, const jni$_.JStringNullableType()); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => Object.hash($StringValuedMap$NullableType, K); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringValuedMap$NullableType<$K>) && other is $StringValuedMap$NullableType<$K> && @@ -5957,46 +5957,46 @@ final class $StringValuedMap$NullableType<$K extends _$jni.JObject?> } } -final class $StringValuedMap$Type<$K extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$K> K; +final class $StringValuedMap$Type<$K extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$K> K; - @_$jni.internal + @jni$_.internal const $StringValuedMap$Type( this.K, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/generics/StringValuedMap;'; - @_$jni.internal - @_$core.override - StringValuedMap<$K> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringValuedMap<$K> fromReference(jni$_.JReference reference) => StringValuedMap<$K>.fromReference( K, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => $MyMap$NullableType<$K?, _$jni.JString?>( - K.nullableType, const _$jni.JStringNullableType()); - - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => $MyMap$NullableType<$K?, jni$_.JString?>( + K.nullableType, const jni$_.JStringNullableType()); + + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $StringValuedMap$NullableType<$K>(K); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => Object.hash($StringValuedMap$Type, K); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringValuedMap$Type<$K>) && other is $StringValuedMap$Type<$K> && @@ -6005,36 +6005,36 @@ final class $StringValuedMap$Type<$K extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.interfaces.GenericInterface` -class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class GenericInterface<$T extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal GenericInterface.fromReference( this.T, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T>(T), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/GenericInterface'); /// The type which includes information such as the signature of this class. static $GenericInterface$NullableType<$T> - nullableType<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + nullableType<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $GenericInterface$NullableType<$T>( T, ); } - static $GenericInterface$Type<$T> type<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $GenericInterface$Type<$T> type<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $GenericInterface$Type<$T>( T, @@ -6046,28 +6046,28 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)[Ljava/lang/Object;', ); - static final _genericArrayOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _genericArrayOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract java.lang.Object[] genericArrayOf(U object)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<$U?>? genericArrayOf<$U extends _$jni.JObject?>( + jni$_.JArray<$U?>? genericArrayOf<$U extends jni$_.JObject?>( $U? object, { - required _$jni.JObjType<$U> U, + required jni$_.JObjType<$U> U, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _genericArrayOf(reference.pointer, - _id_genericArrayOf as _$jni.JMethodIDPtr, _$object.pointer) - .object<_$jni.JArray<$U?>?>( - _$jni.JArrayNullableType<$U?>(U.nullableType)); + _id_genericArrayOf as jni$_.JMethodIDPtr, _$object.pointer) + .object?>( + jni$_.JArrayNullableType<$U?>(U.nullableType)); } static final _id_arrayOf = _class.instanceMethodId( @@ -6075,27 +6075,27 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)[Ljava/lang/Object;', ); - static final _arrayOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _arrayOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract java.lang.Object[] arrayOf(T object)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<$T?>? arrayOf( + jni$_.JArray<$T?>? arrayOf( $T? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; - return _arrayOf(reference.pointer, _id_arrayOf as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + return _arrayOf(reference.pointer, _id_arrayOf as jni$_.JMethodIDPtr, _$object.pointer) - .object<_$jni.JArray<$T?>?>( - _$jni.JArrayNullableType<$T?>(T.nullableType)); + .object?>( + jni$_.JArrayNullableType<$T?>(T.nullableType)); } static final _id_mapOf = _class.instanceMethodId( @@ -6103,36 +6103,36 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;', ); - static final _mapOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _mapOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public abstract java.util.Map mapOf(T object, U object1)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JMap<$T?, $U?>? mapOf<$U extends _$jni.JObject?>( + jni$_.JMap<$T?, $U?>? mapOf<$U extends jni$_.JObject?>( $T? object, $U? object1, { - required _$jni.JObjType<$U> U, + required jni$_.JObjType<$U> U, }) { - final _$object = object?.reference ?? _$jni.jNullReference; - final _$object1 = object1?.reference ?? _$jni.jNullReference; - return _mapOf(reference.pointer, _id_mapOf as _$jni.JMethodIDPtr, + final _$object = object?.reference ?? jni$_.jNullReference; + final _$object1 = object1?.reference ?? jni$_.jNullReference; + return _mapOf(reference.pointer, _id_mapOf as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer) - .object<_$jni.JMap<$T?, $U?>?>( - _$jni.JMapNullableType<$T?, $U?>(T.nullableType, U.nullableType)); + .object?>( + jni$_.JMapNullableType<$T?, $U?>(T.nullableType, U.nullableType)); } static final _id_firstOfGenericArray = _class.instanceMethodId( @@ -6140,26 +6140,26 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'([Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _firstOfGenericArray = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstOfGenericArray = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract U firstOfGenericArray(java.lang.Object[] objects)` /// The returned object must be released after use, by calling the [release] method. - $U? firstOfGenericArray<$U extends _$jni.JObject?>( - _$jni.JArray<$U?>? objects, { - required _$jni.JObjType<$U> U, + $U? firstOfGenericArray<$U extends jni$_.JObject?>( + jni$_.JArray<$U?>? objects, { + required jni$_.JObjType<$U> U, }) { - final _$objects = objects?.reference ?? _$jni.jNullReference; + final _$objects = objects?.reference ?? jni$_.jNullReference; return _firstOfGenericArray(reference.pointer, - _id_firstOfGenericArray as _$jni.JMethodIDPtr, _$objects.pointer) + _id_firstOfGenericArray as jni$_.JMethodIDPtr, _$objects.pointer) .object<$U?>(U.nullableType); } @@ -6168,25 +6168,25 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'([Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _firstOfArray = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstOfArray = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract T firstOfArray(java.lang.Object[] objects)` /// The returned object must be released after use, by calling the [release] method. $T? firstOfArray( - _$jni.JArray<$T?>? objects, + jni$_.JArray<$T?>? objects, ) { - final _$objects = objects?.reference ?? _$jni.jNullReference; + final _$objects = objects?.reference ?? jni$_.jNullReference; return _firstOfArray(reference.pointer, - _id_firstOfArray as _$jni.JMethodIDPtr, _$objects.pointer) + _id_firstOfArray as jni$_.JMethodIDPtr, _$objects.pointer) .object<$T?>(T.nullableType); } @@ -6195,25 +6195,25 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/util/Map;)Ljava/lang/Object;', ); - static final _firstKeyOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstKeyOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract T firstKeyOf(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $T? firstKeyOf<$U extends _$jni.JObject?>( - _$jni.JMap<$T?, $U?>? map, { - required _$jni.JObjType<$U> U, + $T? firstKeyOf<$U extends jni$_.JObject?>( + jni$_.JMap<$T?, $U?>? map, { + required jni$_.JObjType<$U> U, }) { - final _$map = map?.reference ?? _$jni.jNullReference; - return _firstKeyOf(reference.pointer, _id_firstKeyOf as _$jni.JMethodIDPtr, + final _$map = map?.reference ?? jni$_.jNullReference; + return _firstKeyOf(reference.pointer, _id_firstKeyOf as jni$_.JMethodIDPtr, _$map.pointer) .object<$T?>(T.nullableType); } @@ -6223,39 +6223,39 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/util/Map;)Ljava/lang/Object;', ); - static final _firstValueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstValueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract U firstValueOf(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $U? firstValueOf<$U extends _$jni.JObject?>( - _$jni.JMap<$T?, $U?>? map, { - required _$jni.JObjType<$U> U, + $U? firstValueOf<$U extends jni$_.JObject?>( + jni$_.JMap<$T?, $U?>? map, { + required jni$_.JObjType<$U> U, }) { - final _$map = map?.reference ?? _$jni.jNullReference; + final _$map = map?.reference ?? jni$_.jNullReference; return _firstValueOf(reference.pointer, - _id_firstValueOf as _$jni.JMethodIDPtr, _$map.pointer) + _id_firstValueOf as jni$_.JMethodIDPtr, _$map.pointer) .object<$U?>(U.nullableType); } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -6263,122 +6263,122 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; if ($d == r'genericArrayOf(Ljava/lang/Object;)[Ljava/lang/Object;') { final $r = _$impls[$p]!.genericArrayOf( - $a![0]?.as(const _$jni.JObjectType(), releaseOriginal: true), + $a![0]?.as(const jni$_.JObjectType(), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'arrayOf(Ljava/lang/Object;)[Ljava/lang/Object;') { final $r = _$impls[$p]!.arrayOf( $a![0]?.as(_$impls[$p]!.T, releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'mapOf(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;') { final $r = _$impls[$p]!.mapOf( $a![0]?.as(_$impls[$p]!.T, releaseOriginal: true), - $a![1]?.as(const _$jni.JObjectType(), releaseOriginal: true), + $a![1]?.as(const jni$_.JObjectType(), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'firstOfGenericArray([Ljava/lang/Object;)Ljava/lang/Object;') { final $r = _$impls[$p]!.firstOfGenericArray( $a![0]?.as( - const _$jni.JArrayType<_$jni.JObject?>( - _$jni.JObjectNullableType()), + const jni$_.JArrayType( + jni$_.JObjectNullableType()), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'firstOfArray([Ljava/lang/Object;)Ljava/lang/Object;') { final $r = _$impls[$p]!.firstOfArray( $a![0]?.as( - const _$jni.JArrayType<_$jni.JObject?>( - _$jni.JObjectNullableType()), + const jni$_.JArrayType( + jni$_.JObjectNullableType()), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'firstKeyOf(Ljava/util/Map;)Ljava/lang/Object;') { final $r = _$impls[$p]!.firstKeyOf( $a![0]?.as( - const _$jni.JMapType<_$jni.JObject?, _$jni.JObject?>( - _$jni.JObjectNullableType(), _$jni.JObjectNullableType()), + const jni$_.JMapType( + jni$_.JObjectNullableType(), jni$_.JObjectNullableType()), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'firstValueOf(Ljava/util/Map;)Ljava/lang/Object;') { final $r = _$impls[$p]!.firstValueOf( $a![0]?.as( - const _$jni.JMapType<_$jni.JObject?, _$jni.JObject?>( - _$jni.JObjectNullableType(), _$jni.JObjectNullableType()), + const jni$_.JMapType( + jni$_.JObjectNullableType(), jni$_.JObjectNullableType()), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } - static void implementIn<$T extends _$jni.JObject?>( - _$jni.JImplementer implementer, + static void implementIn<$T extends jni$_.JObject?>( + jni$_.JImplementer implementer, $GenericInterface<$T> $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.interfaces.GenericInterface', @@ -6393,7 +6393,7 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { factory GenericInterface.implement( $GenericInterface<$T> $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return GenericInterface<$T>.fromReference( $impl.T, @@ -6402,54 +6402,54 @@ class GenericInterface<$T extends _$jni.JObject?> extends _$jni.JObject { } } -abstract base mixin class $GenericInterface<$T extends _$jni.JObject?> { +abstract base mixin class $GenericInterface<$T extends jni$_.JObject?> { factory $GenericInterface({ - required _$jni.JObjType<$T> T, - required _$jni.JArray<_$jni.JObject?>? Function(_$jni.JObject? object) + required jni$_.JObjType<$T> T, + required jni$_.JArray? Function(jni$_.JObject? object) genericArrayOf, - required _$jni.JArray<_$jni.JObject?>? Function($T? object) arrayOf, - required _$jni.JMap<_$jni.JObject?, _$jni.JObject?>? Function( - $T? object, _$jni.JObject? object1) + required jni$_.JArray? Function($T? object) arrayOf, + required jni$_.JMap? Function( + $T? object, jni$_.JObject? object1) mapOf, - required _$jni.JObject? Function(_$jni.JArray<_$jni.JObject?>? objects) + required jni$_.JObject? Function(jni$_.JArray? objects) firstOfGenericArray, - required $T? Function(_$jni.JArray<_$jni.JObject?>? objects) firstOfArray, - required $T? Function(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) + required $T? Function(jni$_.JArray? objects) firstOfArray, + required $T? Function(jni$_.JMap? map) firstKeyOf, - required _$jni.JObject? Function( - _$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) + required jni$_.JObject? Function( + jni$_.JMap? map) firstValueOf, }) = _$GenericInterface<$T>; - _$jni.JObjType<$T> get T; + jni$_.JObjType<$T> get T; - _$jni.JArray<_$jni.JObject?>? genericArrayOf(_$jni.JObject? object); - _$jni.JArray<_$jni.JObject?>? arrayOf($T? object); - _$jni.JMap<_$jni.JObject?, _$jni.JObject?>? mapOf( - $T? object, _$jni.JObject? object1); - _$jni.JObject? firstOfGenericArray(_$jni.JArray<_$jni.JObject?>? objects); - $T? firstOfArray(_$jni.JArray<_$jni.JObject?>? objects); - $T? firstKeyOf(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map); - _$jni.JObject? firstValueOf(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map); + jni$_.JArray? genericArrayOf(jni$_.JObject? object); + jni$_.JArray? arrayOf($T? object); + jni$_.JMap? mapOf( + $T? object, jni$_.JObject? object1); + jni$_.JObject? firstOfGenericArray(jni$_.JArray? objects); + $T? firstOfArray(jni$_.JArray? objects); + $T? firstKeyOf(jni$_.JMap? map); + jni$_.JObject? firstValueOf(jni$_.JMap? map); } -final class _$GenericInterface<$T extends _$jni.JObject?> +final class _$GenericInterface<$T extends jni$_.JObject?> with $GenericInterface<$T> { _$GenericInterface({ required this.T, - required _$jni.JArray<_$jni.JObject?>? Function(_$jni.JObject? object) + required jni$_.JArray? Function(jni$_.JObject? object) genericArrayOf, - required _$jni.JArray<_$jni.JObject?>? Function($T? object) arrayOf, - required _$jni.JMap<_$jni.JObject?, _$jni.JObject?>? Function( - $T? object, _$jni.JObject? object1) + required jni$_.JArray? Function($T? object) arrayOf, + required jni$_.JMap? Function( + $T? object, jni$_.JObject? object1) mapOf, - required _$jni.JObject? Function(_$jni.JArray<_$jni.JObject?>? objects) + required jni$_.JObject? Function(jni$_.JArray? objects) firstOfGenericArray, - required $T? Function(_$jni.JArray<_$jni.JObject?>? objects) firstOfArray, - required $T? Function(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) + required $T? Function(jni$_.JArray? objects) firstOfArray, + required $T? Function(jni$_.JMap? map) firstKeyOf, - required _$jni.JObject? Function( - _$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) + required jni$_.JObject? Function( + jni$_.JMap? map) firstValueOf, }) : _genericArrayOf = genericArrayOf, _arrayOf = arrayOf, @@ -6459,92 +6459,92 @@ final class _$GenericInterface<$T extends _$jni.JObject?> _firstKeyOf = firstKeyOf, _firstValueOf = firstValueOf; - @_$core.override - final _$jni.JObjType<$T> T; + @core$_.override + final jni$_.JObjType<$T> T; - final _$jni.JArray<_$jni.JObject?>? Function(_$jni.JObject? object) + final jni$_.JArray? Function(jni$_.JObject? object) _genericArrayOf; - final _$jni.JArray<_$jni.JObject?>? Function($T? object) _arrayOf; - final _$jni.JMap<_$jni.JObject?, _$jni.JObject?>? Function( - $T? object, _$jni.JObject? object1) _mapOf; - final _$jni.JObject? Function(_$jni.JArray<_$jni.JObject?>? objects) + final jni$_.JArray? Function($T? object) _arrayOf; + final jni$_.JMap? Function( + $T? object, jni$_.JObject? object1) _mapOf; + final jni$_.JObject? Function(jni$_.JArray? objects) _firstOfGenericArray; - final $T? Function(_$jni.JArray<_$jni.JObject?>? objects) _firstOfArray; - final $T? Function(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) + final $T? Function(jni$_.JArray? objects) _firstOfArray; + final $T? Function(jni$_.JMap? map) _firstKeyOf; - final _$jni.JObject? Function(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) + final jni$_.JObject? Function(jni$_.JMap? map) _firstValueOf; - _$jni.JArray<_$jni.JObject?>? genericArrayOf(_$jni.JObject? object) { + jni$_.JArray? genericArrayOf(jni$_.JObject? object) { return _genericArrayOf(object); } - _$jni.JArray<_$jni.JObject?>? arrayOf($T? object) { + jni$_.JArray? arrayOf($T? object) { return _arrayOf(object); } - _$jni.JMap<_$jni.JObject?, _$jni.JObject?>? mapOf( - $T? object, _$jni.JObject? object1) { + jni$_.JMap? mapOf( + $T? object, jni$_.JObject? object1) { return _mapOf(object, object1); } - _$jni.JObject? firstOfGenericArray(_$jni.JArray<_$jni.JObject?>? objects) { + jni$_.JObject? firstOfGenericArray(jni$_.JArray? objects) { return _firstOfGenericArray(objects); } - $T? firstOfArray(_$jni.JArray<_$jni.JObject?>? objects) { + $T? firstOfArray(jni$_.JArray? objects) { return _firstOfArray(objects); } - $T? firstKeyOf(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) { + $T? firstKeyOf(jni$_.JMap? map) { return _firstKeyOf(map); } - _$jni.JObject? firstValueOf(_$jni.JMap<_$jni.JObject?, _$jni.JObject?>? map) { + jni$_.JObject? firstValueOf(jni$_.JMap? map) { return _firstValueOf(map); } } -final class $GenericInterface$NullableType<$T extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GenericInterface$NullableType<$T extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $GenericInterface$NullableType( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/GenericInterface;'; - @_$jni.internal - @_$core.override - GenericInterface<$T>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GenericInterface<$T>? fromReference(jni$_.JReference reference) => reference.isNull ? null : GenericInterface<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GenericInterface$NullableType, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GenericInterface$NullableType<$T>) && other is $GenericInterface$NullableType<$T> && @@ -6552,45 +6552,45 @@ final class $GenericInterface$NullableType<$T extends _$jni.JObject?> } } -final class $GenericInterface$Type<$T extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GenericInterface$Type<$T extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $GenericInterface$Type( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/GenericInterface;'; - @_$jni.internal - @_$core.override - GenericInterface<$T> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GenericInterface<$T> fromReference(jni$_.JReference reference) => GenericInterface<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GenericInterface$NullableType<$T>(T); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($GenericInterface$Type, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GenericInterface$Type<$T>) && other is $GenericInterface$Type<$T> && @@ -6599,35 +6599,35 @@ final class $GenericInterface$Type<$T extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.interfaces.MyInterface` -class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class MyInterface<$T extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal MyInterface.fromReference( this.T, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T>(T), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/MyInterface'); /// The type which includes information such as the signature of this class. - static $MyInterface$NullableType<$T> nullableType<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $MyInterface$NullableType<$T> nullableType<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $MyInterface$NullableType<$T>( T, ); } - static $MyInterface$Type<$T> type<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $MyInterface$Type<$T> type<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $MyInterface$Type<$T>( T, @@ -6639,23 +6639,23 @@ class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _voidCallback = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _voidCallback = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JThrowablePtr Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract void voidCallback(java.lang.String string)` void voidCallback( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - _voidCallback(reference.pointer, _id_voidCallback as _$jni.JMethodIDPtr, + final _$string = string?.reference ?? jni$_.jNullReference; + _voidCallback(reference.pointer, _id_voidCallback as jni$_.JMethodIDPtr, _$string.pointer) .check(); } @@ -6665,26 +6665,26 @@ class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/String;)Ljava/lang/String;', ); - static final _stringCallback = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _stringCallback = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract java.lang.String stringCallback(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? stringCallback( - _$jni.JString? string, + jni$_.JString? stringCallback( + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _stringCallback(reference.pointer, - _id_stringCallback as _$jni.JMethodIDPtr, _$string.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _id_stringCallback as jni$_.JMethodIDPtr, _$string.pointer) + .object(const jni$_.JStringNullableType()); } static final _id_varCallback = _class.instanceMethodId( @@ -6692,25 +6692,25 @@ class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _varCallback = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _varCallback = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract T varCallback(T object)` /// The returned object must be released after use, by calling the [release] method. $T? varCallback( $T? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _varCallback(reference.pointer, - _id_varCallback as _$jni.JMethodIDPtr, _$object.pointer) + _id_varCallback as jni$_.JMethodIDPtr, _$object.pointer) .object<$T?>(T.nullableType); } @@ -6719,21 +6719,21 @@ class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { r'(IZCD)J', ); - static final _manyPrimitives = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _manyPrimitives = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Double + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Double )>)>>('globalEnv_CallLongMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, int, int, int, double)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, int, int, int, double)>(); /// from: `public abstract long manyPrimitives(int i, boolean z, char c, double d)` int manyPrimitives( @@ -6743,20 +6743,20 @@ class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { double d, ) { return _manyPrimitives(reference.pointer, - _id_manyPrimitives as _$jni.JMethodIDPtr, i, z ? 1 : 0, c, d) + _id_manyPrimitives as jni$_.JMethodIDPtr, i, z ? 1 : 0, c, d) .long; } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -6764,82 +6764,82 @@ class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; if ($d == r'voidCallback(Ljava/lang/String;)V') { _$impls[$p]!.voidCallback( - $a![0]?.as(const _$jni.JStringType(), releaseOriginal: true), + $a![0]?.as(const jni$_.JStringType(), releaseOriginal: true), ); - return _$jni.nullptr; + return jni$_.nullptr; } if ($d == r'stringCallback(Ljava/lang/String;)Ljava/lang/String;') { final $r = _$impls[$p]!.stringCallback( - $a![0]?.as(const _$jni.JStringType(), releaseOriginal: true), + $a![0]?.as(const jni$_.JStringType(), releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'varCallback(Ljava/lang/Object;)Ljava/lang/Object;') { final $r = _$impls[$p]!.varCallback( $a![0]?.as(_$impls[$p]!.T, releaseOriginal: true), ); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } if ($d == r'manyPrimitives(IZCD)J') { final $r = _$impls[$p]!.manyPrimitives( $a![0]! - .as(const _$jni.JIntegerType(), releaseOriginal: true) + .as(const jni$_.JIntegerType(), releaseOriginal: true) .intValue(releaseOriginal: true), $a![1]! - .as(const _$jni.JBooleanType(), releaseOriginal: true) + .as(const jni$_.JBooleanType(), releaseOriginal: true) .booleanValue(releaseOriginal: true), $a![2]! - .as(const _$jni.JCharacterType(), releaseOriginal: true) + .as(const jni$_.JCharacterType(), releaseOriginal: true) .charValue(releaseOriginal: true), $a![3]! - .as(const _$jni.JDoubleType(), releaseOriginal: true) + .as(const jni$_.JDoubleType(), releaseOriginal: true) .doubleValue(releaseOriginal: true), ); - return _$jni.JLong($r).reference.toPointer(); + return jni$_.JLong($r).reference.toPointer(); } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } - static void implementIn<$T extends _$jni.JObject?>( - _$jni.JImplementer implementer, + static void implementIn<$T extends jni$_.JObject?>( + jni$_.JImplementer implementer, $MyInterface<$T> $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.interfaces.MyInterface', @@ -6856,41 +6856,41 @@ class MyInterface<$T extends _$jni.JObject?> extends _$jni.JObject { factory MyInterface.implement( $MyInterface<$T> $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return MyInterface<$T>.fromReference( $impl.T, $i.implementReference(), ); } - static _$core.Map get $impls => _$impls; + static core$_.Map get $impls => _$impls; } -abstract base mixin class $MyInterface<$T extends _$jni.JObject?> { +abstract base mixin class $MyInterface<$T extends jni$_.JObject?> { factory $MyInterface({ - required _$jni.JObjType<$T> T, - required void Function(_$jni.JString? string) voidCallback, + required jni$_.JObjType<$T> T, + required void Function(jni$_.JString? string) voidCallback, bool voidCallback$async, - required _$jni.JString? Function(_$jni.JString? string) stringCallback, + required jni$_.JString? Function(jni$_.JString? string) stringCallback, required $T? Function($T? object) varCallback, required int Function(int i, bool z, int c, double d) manyPrimitives, }) = _$MyInterface<$T>; - _$jni.JObjType<$T> get T; + jni$_.JObjType<$T> get T; - void voidCallback(_$jni.JString? string); + void voidCallback(jni$_.JString? string); bool get voidCallback$async => false; - _$jni.JString? stringCallback(_$jni.JString? string); + jni$_.JString? stringCallback(jni$_.JString? string); $T? varCallback($T? object); int manyPrimitives(int i, bool z, int c, double d); } -final class _$MyInterface<$T extends _$jni.JObject?> with $MyInterface<$T> { +final class _$MyInterface<$T extends jni$_.JObject?> with $MyInterface<$T> { _$MyInterface({ required this.T, - required void Function(_$jni.JString? string) voidCallback, + required void Function(jni$_.JString? string) voidCallback, this.voidCallback$async = false, - required _$jni.JString? Function(_$jni.JString? string) stringCallback, + required jni$_.JString? Function(jni$_.JString? string) stringCallback, required $T? Function($T? object) varCallback, required int Function(int i, bool z, int c, double d) manyPrimitives, }) : _voidCallback = voidCallback, @@ -6898,20 +6898,20 @@ final class _$MyInterface<$T extends _$jni.JObject?> with $MyInterface<$T> { _varCallback = varCallback, _manyPrimitives = manyPrimitives; - @_$core.override - final _$jni.JObjType<$T> T; + @core$_.override + final jni$_.JObjType<$T> T; - final void Function(_$jni.JString? string) _voidCallback; + final void Function(jni$_.JString? string) _voidCallback; final bool voidCallback$async; - final _$jni.JString? Function(_$jni.JString? string) _stringCallback; + final jni$_.JString? Function(jni$_.JString? string) _stringCallback; final $T? Function($T? object) _varCallback; final int Function(int i, bool z, int c, double d) _manyPrimitives; - void voidCallback(_$jni.JString? string) { + void voidCallback(jni$_.JString? string) { return _voidCallback(string); } - _$jni.JString? stringCallback(_$jni.JString? string) { + jni$_.JString? stringCallback(jni$_.JString? string) { return _stringCallback(string); } @@ -6924,45 +6924,45 @@ final class _$MyInterface<$T extends _$jni.JObject?> with $MyInterface<$T> { } } -final class $MyInterface$NullableType<$T extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $MyInterface$NullableType<$T extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $MyInterface$NullableType( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyInterface;'; - @_$jni.internal - @_$core.override - MyInterface<$T>? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + MyInterface<$T>? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyInterface<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyInterface$NullableType, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyInterface$NullableType<$T>) && other is $MyInterface$NullableType<$T> && @@ -6970,45 +6970,45 @@ final class $MyInterface$NullableType<$T extends _$jni.JObject?> } } -final class $MyInterface$Type<$T extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $MyInterface$Type<$T extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $MyInterface$Type( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyInterface;'; - @_$jni.internal - @_$core.override - MyInterface<$T> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyInterface<$T> fromReference(jni$_.JReference reference) => MyInterface<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $MyInterface$NullableType<$T>(T); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($MyInterface$Type, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyInterface$Type<$T>) && other is $MyInterface$Type<$T> && @@ -7017,18 +7017,18 @@ final class $MyInterface$Type<$T extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.interfaces.MyInterfaceConsumer` -class MyInterfaceConsumer extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class MyInterfaceConsumer extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal MyInterfaceConsumer.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/MyInterfaceConsumer'); /// The type which includes information such as the signature of this class. @@ -7038,23 +7038,23 @@ class MyInterfaceConsumer extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory MyInterfaceConsumer() { return MyInterfaceConsumer.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -7063,50 +7063,50 @@ class MyInterfaceConsumer extends _$jni.JObject { r'(Lcom/github/dart_lang/jnigen/interfaces/MyInterface;Ljava/lang/String;IZCDLjava/lang/Object;)V', ); - static final _consumeOnAnotherThread = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _consumeOnAnotherThread = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Double, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Double, + jni$_.Pointer )>)>>('globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, int, int, int, double, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.Pointer)>(); /// from: `static public void consumeOnAnotherThread(com.github.dart_lang.jnigen.interfaces.MyInterface myInterface, java.lang.String string, int i, boolean z, char c, double d, T object)` - static void consumeOnAnotherThread<$T extends _$jni.JObject?>( + static void consumeOnAnotherThread<$T extends jni$_.JObject?>( MyInterface<$T?>? myInterface, - _$jni.JString? string, + jni$_.JString? string, int i, bool z, int c, double d, $T? object, { - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { - final _$myInterface = myInterface?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; - final _$object = object?.reference ?? _$jni.jNullReference; + final _$myInterface = myInterface?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; _consumeOnAnotherThread( _class.reference.pointer, - _id_consumeOnAnotherThread as _$jni.JMethodIDPtr, + _id_consumeOnAnotherThread as jni$_.JMethodIDPtr, _$myInterface.pointer, _$string.pointer, i, @@ -7122,50 +7122,50 @@ class MyInterfaceConsumer extends _$jni.JObject { r'(Lcom/github/dart_lang/jnigen/interfaces/MyInterface;Ljava/lang/String;IZCDLjava/lang/Object;)V', ); - static final _consumeOnSameThread = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _consumeOnSameThread = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Int32, - _$jni.Int32, - _$jni.Int32, - _$jni.Double, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Int32, + jni$_.Int32, + jni$_.Int32, + jni$_.Double, + jni$_.Pointer )>)>>('globalEnv_CallStaticVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, int, int, int, double, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.Pointer)>(); /// from: `static public void consumeOnSameThread(com.github.dart_lang.jnigen.interfaces.MyInterface myInterface, java.lang.String string, int i, boolean z, char c, double d, T object)` - static void consumeOnSameThread<$T extends _$jni.JObject?>( + static void consumeOnSameThread<$T extends jni$_.JObject?>( MyInterface<$T?>? myInterface, - _$jni.JString? string, + jni$_.JString? string, int i, bool z, int c, double d, $T? object, { - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { - final _$myInterface = myInterface?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; - final _$object = object?.reference ?? _$jni.jNullReference; + final _$myInterface = myInterface?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; _consumeOnSameThread( _class.reference.pointer, - _id_consumeOnSameThread as _$jni.JMethodIDPtr, + _id_consumeOnSameThread as jni$_.JMethodIDPtr, _$myInterface.pointer, _$string.pointer, i, @@ -7178,39 +7178,39 @@ class MyInterfaceConsumer extends _$jni.JObject { } final class $MyInterfaceConsumer$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $MyInterfaceConsumer$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyInterfaceConsumer;'; - @_$jni.internal - @_$core.override - MyInterfaceConsumer? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyInterfaceConsumer? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyInterfaceConsumer.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyInterfaceConsumer$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyInterfaceConsumer$NullableType) && other is $MyInterfaceConsumer$NullableType; @@ -7218,38 +7218,38 @@ final class $MyInterfaceConsumer$NullableType } final class $MyInterfaceConsumer$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $MyInterfaceConsumer$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyInterfaceConsumer;'; - @_$jni.internal - @_$core.override - MyInterfaceConsumer fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyInterfaceConsumer fromReference(jni$_.JReference reference) => MyInterfaceConsumer.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $MyInterfaceConsumer$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyInterfaceConsumer$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyInterfaceConsumer$Type) && other is $MyInterfaceConsumer$Type; @@ -7257,18 +7257,18 @@ final class $MyInterfaceConsumer$Type } /// from: `com.github.dart_lang.jnigen.interfaces.MyRunnable` -class MyRunnable extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class MyRunnable extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal MyRunnable.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/MyRunnable'); /// The type which includes information such as the signature of this class. @@ -7279,33 +7279,33 @@ class MyRunnable extends _$jni.JObject { r'()V', ); - static final _run = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _run = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract void run()` void run() { - _run(reference.pointer, _id_run as _$jni.JMethodIDPtr).check(); + _run(reference.pointer, _id_run as jni$_.JMethodIDPtr).check(); } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -7313,43 +7313,43 @@ class MyRunnable extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; if ($d == r'run()V') { _$impls[$p]!.run(); - return _$jni.nullptr; + return jni$_.nullptr; } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $MyRunnable $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.interfaces.MyRunnable', @@ -7366,13 +7366,13 @@ class MyRunnable extends _$jni.JObject { factory MyRunnable.implement( $MyRunnable $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return MyRunnable.fromReference( $i.implementReference(), ); } - static _$core.Map get $impls => _$impls; + static core$_.Map get $impls => _$impls; } abstract base mixin class $MyRunnable { @@ -7399,94 +7399,94 @@ final class _$MyRunnable with $MyRunnable { } } -final class $MyRunnable$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $MyRunnable$NullableType extends jni$_.JObjType { + @jni$_.internal const $MyRunnable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyRunnable;'; - @_$jni.internal - @_$core.override - MyRunnable? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + MyRunnable? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyRunnable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyRunnable$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyRunnable$NullableType) && other is $MyRunnable$NullableType; } } -final class $MyRunnable$Type extends _$jni.JObjType { - @_$jni.internal +final class $MyRunnable$Type extends jni$_.JObjType { + @jni$_.internal const $MyRunnable$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyRunnable;'; - @_$jni.internal - @_$core.override - MyRunnable fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyRunnable fromReference(jni$_.JReference reference) => MyRunnable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $MyRunnable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyRunnable$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyRunnable$Type) && other is $MyRunnable$Type; } } /// from: `com.github.dart_lang.jnigen.interfaces.MyRunnableRunner` -class MyRunnableRunner extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class MyRunnableRunner extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal MyRunnableRunner.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/MyRunnableRunner'); /// The type which includes information such as the signature of this class. @@ -7499,37 +7499,37 @@ class MyRunnableRunner extends _$jni.JObject { /// from: `public java.lang.Throwable error` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? get error => - _id_error.get(this, const _$jni.JObjectNullableType()); + jni$_.JObject? get error => + _id_error.get(this, const jni$_.JObjectNullableType()); /// from: `public java.lang.Throwable error` /// The returned object must be released after use, by calling the [release] method. - set error(_$jni.JObject? value) => - _id_error.set(this, const _$jni.JObjectNullableType(), value); + set error(jni$_.JObject? value) => + _id_error.set(this, const jni$_.JObjectNullableType(), value); static final _id_new$ = _class.constructorId( r'(Lcom/github/dart_lang/jnigen/interfaces/MyRunnable;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.interfaces.MyRunnable myRunnable)` /// The returned object must be released after use, by calling the [release] method. factory MyRunnableRunner( MyRunnable? myRunnable, ) { - final _$myRunnable = myRunnable?.reference ?? _$jni.jNullReference; + final _$myRunnable = myRunnable?.reference ?? jni$_.jNullReference; return MyRunnableRunner.fromReference(_new$(_class.reference.pointer, - _id_new$ as _$jni.JMethodIDPtr, _$myRunnable.pointer) + _id_new$ as jni$_.JMethodIDPtr, _$myRunnable.pointer) .reference); } @@ -7538,22 +7538,22 @@ class MyRunnableRunner extends _$jni.JObject { r'()V', ); - static final _runOnSameThread = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _runOnSameThread = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void runOnSameThread()` void runOnSameThread() { _runOnSameThread( - reference.pointer, _id_runOnSameThread as _$jni.JMethodIDPtr) + reference.pointer, _id_runOnSameThread as jni$_.JMethodIDPtr) .check(); } @@ -7562,22 +7562,22 @@ class MyRunnableRunner extends _$jni.JObject { r'()V', ); - static final _runOnAnotherThread = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _runOnAnotherThread = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void runOnAnotherThread()` void runOnAnotherThread() { _runOnAnotherThread( - reference.pointer, _id_runOnAnotherThread as _$jni.JMethodIDPtr) + reference.pointer, _id_runOnAnotherThread as jni$_.JMethodIDPtr) .check(); } @@ -7586,98 +7586,98 @@ class MyRunnableRunner extends _$jni.JObject { r'()V', ); - static final _runOnAnotherThreadAndJoin = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _runOnAnotherThreadAndJoin = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallVoidMethod') .asFunction< - _$jni.JThrowablePtr Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JThrowablePtr Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void runOnAnotherThreadAndJoin()` void runOnAnotherThreadAndJoin() { _runOnAnotherThreadAndJoin(reference.pointer, - _id_runOnAnotherThreadAndJoin as _$jni.JMethodIDPtr) + _id_runOnAnotherThreadAndJoin as jni$_.JMethodIDPtr) .check(); } } final class $MyRunnableRunner$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $MyRunnableRunner$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyRunnableRunner;'; - @_$jni.internal - @_$core.override - MyRunnableRunner? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyRunnableRunner? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyRunnableRunner.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyRunnableRunner$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyRunnableRunner$NullableType) && other is $MyRunnableRunner$NullableType; } } -final class $MyRunnableRunner$Type extends _$jni.JObjType { - @_$jni.internal +final class $MyRunnableRunner$Type extends jni$_.JObjType { + @jni$_.internal const $MyRunnableRunner$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/MyRunnableRunner;'; - @_$jni.internal - @_$core.override - MyRunnableRunner fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyRunnableRunner fromReference(jni$_.JReference reference) => MyRunnableRunner.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $MyRunnableRunner$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyRunnableRunner$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyRunnableRunner$Type) && other is $MyRunnableRunner$Type; @@ -7685,18 +7685,18 @@ final class $MyRunnableRunner$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.interfaces.StringConversionException` -class StringConversionException extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class StringConversionException extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal StringConversionException.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/StringConversionException'); /// The type which includes information such as the signature of this class. @@ -7706,65 +7706,65 @@ class StringConversionException extends _$jni.JObject { r'(Ljava/lang/String;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_NewObject') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public void (java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. factory StringConversionException( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return StringConversionException.fromReference(_new$( _class.reference.pointer, - _id_new$ as _$jni.JMethodIDPtr, + _id_new$ as jni$_.JMethodIDPtr, _$string.pointer) .reference); } } final class $StringConversionException$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $StringConversionException$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/StringConversionException;'; - @_$jni.internal - @_$core.override - StringConversionException? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringConversionException? fromReference(jni$_.JReference reference) => reference.isNull ? null : StringConversionException.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($StringConversionException$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringConversionException$NullableType) && other is $StringConversionException$NullableType; @@ -7772,38 +7772,38 @@ final class $StringConversionException$NullableType } final class $StringConversionException$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $StringConversionException$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/StringConversionException;'; - @_$jni.internal - @_$core.override - StringConversionException fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringConversionException fromReference(jni$_.JReference reference) => StringConversionException.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $StringConversionException$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($StringConversionException$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringConversionException$Type) && other is $StringConversionException$Type; @@ -7811,18 +7811,18 @@ final class $StringConversionException$Type } /// from: `com.github.dart_lang.jnigen.interfaces.StringConverter` -class StringConverter extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class StringConverter extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal StringConverter.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/StringConverter'); /// The type which includes information such as the signature of this class. @@ -7833,37 +7833,37 @@ class StringConverter extends _$jni.JObject { r'(Ljava/lang/String;)I', ); - static final _parseToInt = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _parseToInt = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallIntMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public abstract int parseToInt(java.lang.String string)` int parseToInt( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - return _parseToInt(reference.pointer, _id_parseToInt as _$jni.JMethodIDPtr, + final _$string = string?.reference ?? jni$_.jNullReference; + return _parseToInt(reference.pointer, _id_parseToInt as jni$_.JMethodIDPtr, _$string.pointer) .integer; } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -7871,45 +7871,45 @@ class StringConverter extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; if ($d == r'parseToInt(Ljava/lang/String;)I') { final $r = _$impls[$p]!.parseToInt( - $a![0]?.as(const _$jni.JStringType(), releaseOriginal: true), + $a![0]?.as(const jni$_.JStringType(), releaseOriginal: true), ); - return _$jni.JInteger($r).reference.toPointer(); + return jni$_.JInteger($r).reference.toPointer(); } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $StringConverter $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.interfaces.StringConverter', @@ -7924,7 +7924,7 @@ class StringConverter extends _$jni.JObject { factory StringConverter.implement( $StringConverter $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return StringConverter.fromReference( $i.implementReference(), @@ -7934,95 +7934,95 @@ class StringConverter extends _$jni.JObject { abstract base mixin class $StringConverter { factory $StringConverter({ - required int Function(_$jni.JString? string) parseToInt, + required int Function(jni$_.JString? string) parseToInt, }) = _$StringConverter; - int parseToInt(_$jni.JString? string); + int parseToInt(jni$_.JString? string); } final class _$StringConverter with $StringConverter { _$StringConverter({ - required int Function(_$jni.JString? string) parseToInt, + required int Function(jni$_.JString? string) parseToInt, }) : _parseToInt = parseToInt; - final int Function(_$jni.JString? string) _parseToInt; + final int Function(jni$_.JString? string) _parseToInt; - int parseToInt(_$jni.JString? string) { + int parseToInt(jni$_.JString? string) { return _parseToInt(string); } } final class $StringConverter$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $StringConverter$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/StringConverter;'; - @_$jni.internal - @_$core.override - StringConverter? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + StringConverter? fromReference(jni$_.JReference reference) => reference.isNull ? null : StringConverter.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($StringConverter$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringConverter$NullableType) && other is $StringConverter$NullableType; } } -final class $StringConverter$Type extends _$jni.JObjType { - @_$jni.internal +final class $StringConverter$Type extends jni$_.JObjType { + @jni$_.internal const $StringConverter$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/StringConverter;'; - @_$jni.internal - @_$core.override - StringConverter fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringConverter fromReference(jni$_.JReference reference) => StringConverter.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $StringConverter$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($StringConverter$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringConverter$Type) && other is $StringConverter$Type; @@ -8030,18 +8030,18 @@ final class $StringConverter$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.interfaces.StringConverterConsumer` -class StringConverterConsumer extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class StringConverterConsumer extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal StringConverterConsumer.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/interfaces/StringConverterConsumer'); /// The type which includes information such as the signature of this class. @@ -8051,23 +8051,23 @@ class StringConverterConsumer extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory StringConverterConsumer() { return StringConverterConsumer.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } @@ -8076,38 +8076,38 @@ class StringConverterConsumer extends _$jni.JObject { r'(Lcom/github/dart_lang/jnigen/interfaces/StringConverter;Ljava/lang/String;)Ljava/lang/Integer;', ); - static final _consumeOnSameThread = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _consumeOnSameThread = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public java.lang.Integer consumeOnSameThread(com.github.dart_lang.jnigen.interfaces.StringConverter stringConverter, java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JInteger? consumeOnSameThread( + static jni$_.JInteger? consumeOnSameThread( StringConverter? stringConverter, - _$jni.JString? string, + jni$_.JString? string, ) { final _$stringConverter = - stringConverter?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; + stringConverter?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _consumeOnSameThread( _class.reference.pointer, - _id_consumeOnSameThread as _$jni.JMethodIDPtr, + _id_consumeOnSameThread as jni$_.JMethodIDPtr, _$stringConverter.pointer, _$string.pointer) - .object<_$jni.JInteger?>(const _$jni.JIntegerNullableType()); + .object(const jni$_.JIntegerNullableType()); } static final _id_consumeOnAnotherThread = _class.staticMethodId( @@ -8115,75 +8115,75 @@ class StringConverterConsumer extends _$jni.JObject { r'(Lcom/github/dart_lang/jnigen/interfaces/StringConverter;Ljava/lang/String;)Ljava/util/concurrent/Future;', ); - static final _consumeOnAnotherThread = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _consumeOnAnotherThread = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `static public java.util.concurrent.Future consumeOnAnotherThread(com.github.dart_lang.jnigen.interfaces.StringConverter stringConverter, java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JObject? consumeOnAnotherThread( + static jni$_.JObject? consumeOnAnotherThread( StringConverter? stringConverter, - _$jni.JString? string, + jni$_.JString? string, ) { final _$stringConverter = - stringConverter?.reference ?? _$jni.jNullReference; - final _$string = string?.reference ?? _$jni.jNullReference; + stringConverter?.reference ?? jni$_.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _consumeOnAnotherThread( _class.reference.pointer, - _id_consumeOnAnotherThread as _$jni.JMethodIDPtr, + _id_consumeOnAnotherThread as jni$_.JMethodIDPtr, _$stringConverter.pointer, _$string.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + .object(const jni$_.JObjectNullableType()); } } final class $StringConverterConsumer$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $StringConverterConsumer$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/StringConverterConsumer;'; - @_$jni.internal - @_$core.override - StringConverterConsumer? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringConverterConsumer? fromReference(jni$_.JReference reference) => reference.isNull ? null : StringConverterConsumer.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($StringConverterConsumer$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringConverterConsumer$NullableType) && other is $StringConverterConsumer$NullableType; @@ -8191,38 +8191,38 @@ final class $StringConverterConsumer$NullableType } final class $StringConverterConsumer$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $StringConverterConsumer$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/interfaces/StringConverterConsumer;'; - @_$jni.internal - @_$core.override - StringConverterConsumer fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + StringConverterConsumer fromReference(jni$_.JReference reference) => StringConverterConsumer.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $StringConverterConsumer$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($StringConverterConsumer$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($StringConverterConsumer$Type) && other is $StringConverterConsumer$Type; @@ -8230,35 +8230,35 @@ final class $StringConverterConsumer$Type } /// from: `com.github.dart_lang.jnigen.inheritance.BaseClass` -class BaseClass<$T extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class BaseClass<$T extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal BaseClass.fromReference( this.T, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T>(T), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/inheritance/BaseClass'); /// The type which includes information such as the signature of this class. - static $BaseClass$NullableType<$T> nullableType<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $BaseClass$NullableType<$T> nullableType<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $BaseClass$NullableType<$T>( T, ); } - static $BaseClass$Type<$T> type<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $BaseClass$Type<$T> type<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $BaseClass$Type<$T>( T, @@ -8269,69 +8269,69 @@ class BaseClass<$T extends _$jni.JObject?> extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory BaseClass({ - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { return BaseClass<$T>.fromReference( T, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $BaseClass$NullableType<$T extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $BaseClass$NullableType<$T extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $BaseClass$NullableType( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/inheritance/BaseClass;'; - @_$jni.internal - @_$core.override - BaseClass<$T>? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + BaseClass<$T>? fromReference(jni$_.JReference reference) => reference.isNull ? null : BaseClass<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($BaseClass$NullableType, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($BaseClass$NullableType<$T>) && other is $BaseClass$NullableType<$T> && @@ -8339,45 +8339,45 @@ final class $BaseClass$NullableType<$T extends _$jni.JObject?> } } -final class $BaseClass$Type<$T extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $BaseClass$Type<$T extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $BaseClass$Type( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/inheritance/BaseClass;'; - @_$jni.internal - @_$core.override - BaseClass<$T> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + BaseClass<$T> fromReference(jni$_.JReference reference) => BaseClass<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $BaseClass$NullableType<$T>(T); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($BaseClass$Type, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($BaseClass$Type<$T>) && other is $BaseClass$Type<$T> && @@ -8386,36 +8386,36 @@ final class $BaseClass$Type<$T extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.inheritance.GenericDerivedClass` -class GenericDerivedClass<$T extends _$jni.JObject?> extends BaseClass<$T?> { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class GenericDerivedClass<$T extends jni$_.JObject?> extends BaseClass<$T?> { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal GenericDerivedClass.fromReference( this.T, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T>(T), super.fromReference(T.nullableType, reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/inheritance/GenericDerivedClass'); /// The type which includes information such as the signature of this class. static $GenericDerivedClass$NullableType<$T> - nullableType<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + nullableType<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $GenericDerivedClass$NullableType<$T>( T, ); } - static $GenericDerivedClass$Type<$T> type<$T extends _$jni.JObject?>( - _$jni.JObjType<$T> T, + static $GenericDerivedClass$Type<$T> type<$T extends jni$_.JObject?>( + jni$_.JObjType<$T> T, ) { return $GenericDerivedClass$Type<$T>( T, @@ -8426,70 +8426,70 @@ class GenericDerivedClass<$T extends _$jni.JObject?> extends BaseClass<$T?> { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory GenericDerivedClass({ - required _$jni.JObjType<$T> T, + required jni$_.JObjType<$T> T, }) { return GenericDerivedClass<$T>.fromReference( T, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $GenericDerivedClass$NullableType<$T extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GenericDerivedClass$NullableType<$T extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $GenericDerivedClass$NullableType( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/inheritance/GenericDerivedClass;'; - @_$jni.internal - @_$core.override - GenericDerivedClass<$T>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GenericDerivedClass<$T>? fromReference(jni$_.JReference reference) => reference.isNull ? null : GenericDerivedClass<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => $BaseClass$NullableType<$T?>(T.nullableType); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => $BaseClass$NullableType<$T?>(T.nullableType); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => Object.hash($GenericDerivedClass$NullableType, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GenericDerivedClass$NullableType<$T>) && other is $GenericDerivedClass$NullableType<$T> && @@ -8497,45 +8497,45 @@ final class $GenericDerivedClass$NullableType<$T extends _$jni.JObject?> } } -final class $GenericDerivedClass$Type<$T extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $GenericDerivedClass$Type<$T extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal + @jni$_.internal const $GenericDerivedClass$Type( this.T, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/inheritance/GenericDerivedClass;'; - @_$jni.internal - @_$core.override - GenericDerivedClass<$T> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + GenericDerivedClass<$T> fromReference(jni$_.JReference reference) => GenericDerivedClass<$T>.fromReference( T, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => $BaseClass$NullableType<$T?>(T.nullableType); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => $BaseClass$NullableType<$T?>(T.nullableType); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $GenericDerivedClass$NullableType<$T>(T); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => Object.hash($GenericDerivedClass$Type, T); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($GenericDerivedClass$Type<$T>) && other is $GenericDerivedClass$Type<$T> && @@ -8544,18 +8544,18 @@ final class $GenericDerivedClass$Type<$T extends _$jni.JObject?> } /// from: `com.github.dart_lang.jnigen.inheritance.SpecificDerivedClass` -class SpecificDerivedClass extends BaseClass<_$jni.JString?> { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class SpecificDerivedClass extends BaseClass { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal SpecificDerivedClass.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, - super.fromReference(const _$jni.JStringNullableType(), reference); + super.fromReference(const jni$_.JStringNullableType(), reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/inheritance/SpecificDerivedClass'); /// The type which includes information such as the signature of this class. @@ -8565,62 +8565,62 @@ class SpecificDerivedClass extends BaseClass<_$jni.JString?> { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory SpecificDerivedClass() { return SpecificDerivedClass.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } final class $SpecificDerivedClass$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $SpecificDerivedClass$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/inheritance/SpecificDerivedClass;'; - @_$jni.internal - @_$core.override - SpecificDerivedClass? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + SpecificDerivedClass? fromReference(jni$_.JReference reference) => reference.isNull ? null : SpecificDerivedClass.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const $BaseClass$NullableType<_$jni.JString?>( - _$jni.JStringNullableType()); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $BaseClass$NullableType( + jni$_.JStringNullableType()); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($SpecificDerivedClass$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($SpecificDerivedClass$NullableType) && other is $SpecificDerivedClass$NullableType; @@ -8628,39 +8628,39 @@ final class $SpecificDerivedClass$NullableType } final class $SpecificDerivedClass$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $SpecificDerivedClass$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/inheritance/SpecificDerivedClass;'; - @_$jni.internal - @_$core.override - SpecificDerivedClass fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + SpecificDerivedClass fromReference(jni$_.JReference reference) => SpecificDerivedClass.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const $BaseClass$NullableType<_$jni.JString?>( - _$jni.JStringNullableType()); - - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const $BaseClass$NullableType( + jni$_.JStringNullableType()); + + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $SpecificDerivedClass$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 2; - @_$core.override + @core$_.override int get hashCode => ($SpecificDerivedClass$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($SpecificDerivedClass$Type) && other is $SpecificDerivedClass$Type; @@ -8668,47 +8668,47 @@ final class $SpecificDerivedClass$Type } /// from: `com.github.dart_lang.jnigen.annotations.Annotated$Nested` -class Annotated_Nested<$T extends _$jni.JObject?, $U extends _$jni.JObject, - $W extends _$jni.JObject, $V extends _$jni.JObject?> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class Annotated_Nested<$T extends jni$_.JObject?, $U extends jni$_.JObject, + $W extends jni$_.JObject, $V extends jni$_.JObject?> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$W> W; + @jni$_.internal + final jni$_.JObjType<$W> W; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal Annotated_Nested.fromReference( this.T, this.U, this.W, this.V, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T, $U, $W, $V>(T, U, W, V), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/annotations/Annotated$Nested'); /// The type which includes information such as the signature of this class. static $Annotated_Nested$NullableType<$T, $U, $W, $V> nullableType< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $W extends _$jni.JObject, - $V extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, - _$jni.JObjType<$W> W, - _$jni.JObjType<$V> V, + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $W extends jni$_.JObject, + $V extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, + jni$_.JObjType<$W> W, + jni$_.JObjType<$V> V, ) { return $Annotated_Nested$NullableType<$T, $U, $W, $V>( T, @@ -8719,14 +8719,14 @@ class Annotated_Nested<$T extends _$jni.JObject?, $U extends _$jni.JObject, } static $Annotated_Nested$Type<$T, $U, $W, $V> type< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $W extends _$jni.JObject, - $V extends _$jni.JObject?>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, - _$jni.JObjType<$W> W, - _$jni.JObjType<$V> V, + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $W extends jni$_.JObject, + $V extends jni$_.JObject?>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, + jni$_.JObjType<$W> W, + jni$_.JObjType<$V> V, ) { return $Annotated_Nested$Type<$T, $U, $W, $V>( T, @@ -8766,80 +8766,80 @@ class Annotated_Nested<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Lcom/github/dart_lang/jnigen/annotations/Annotated;Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (com.github.dart_lang.jnigen.annotations.Annotated $outerClass, V object)` /// The returned object must be released after use, by calling the [release] method. factory Annotated_Nested( Annotated<$T?, $U, $W> $outerClass, $V? object, { - _$jni.JObjType<$T>? T, - _$jni.JObjType<$U>? U, - _$jni.JObjType<$W>? W, - required _$jni.JObjType<$V> V, + jni$_.JObjType<$T>? T, + jni$_.JObjType<$U>? U, + jni$_.JObjType<$W>? W, + required jni$_.JObjType<$V> V, }) { - T ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $Annotated$Type<_$core.dynamic, _$core.dynamic, - _$core.dynamic>) + T ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $Annotated$Type) .T, - ]) as _$jni.JObjType<$T>; - U ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $Annotated$Type<_$core.dynamic, _$core.dynamic, - _$core.dynamic>) + ]) as jni$_.JObjType<$T>; + U ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $Annotated$Type) .U, - ]) as _$jni.JObjType<$U>; - W ??= _$jni.lowestCommonSuperType([ - ($outerClass.$type as $Annotated$Type<_$core.dynamic, _$core.dynamic, - _$core.dynamic>) + ]) as jni$_.JObjType<$U>; + W ??= jni$_.lowestCommonSuperType([ + ($outerClass.$type as $Annotated$Type) .W, - ]) as _$jni.JObjType<$W>; + ]) as jni$_.JObjType<$W>; final _$$outerClass = $outerClass.reference; - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return Annotated_Nested<$T, $U, $W, $V>.fromReference( T, U, W, V, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$$outerClass.pointer, _$object.pointer) .reference); } } final class $Annotated_Nested$NullableType< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $W extends _$jni.JObject, - $V extends _$jni.JObject?> - extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $W extends jni$_.JObject, + $V extends jni$_.JObject?> + extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$W> W; + @jni$_.internal + final jni$_.JObjType<$W> W; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $Annotated_Nested$NullableType( this.T, this.U, @@ -8847,14 +8847,14 @@ final class $Annotated_Nested$NullableType< this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/Annotated$Nested;'; - @_$jni.internal - @_$core.override - Annotated_Nested<$T, $U, $W, $V>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Annotated_Nested<$T, $U, $W, $V>? fromReference(jni$_.JReference reference) => reference.isNull ? null : Annotated_Nested<$T, $U, $W, $V>.fromReference( @@ -8864,22 +8864,22 @@ final class $Annotated_Nested$NullableType< V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Annotated_Nested$NullableType, T, U, W, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Annotated_Nested$NullableType<$T, $U, $W, $V>) && @@ -8892,24 +8892,24 @@ final class $Annotated_Nested$NullableType< } final class $Annotated_Nested$Type< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $W extends _$jni.JObject, - $V extends _$jni.JObject?> - extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $W extends jni$_.JObject, + $V extends jni$_.JObject?> + extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$W> W; + @jni$_.internal + final jni$_.JObjType<$W> W; - @_$jni.internal - final _$jni.JObjType<$V> V; + @jni$_.internal + final jni$_.JObjType<$V> V; - @_$jni.internal + @jni$_.internal const $Annotated_Nested$Type( this.T, this.U, @@ -8917,14 +8917,14 @@ final class $Annotated_Nested$Type< this.V, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/Annotated$Nested;'; - @_$jni.internal - @_$core.override - Annotated_Nested<$T, $U, $W, $V> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Annotated_Nested<$T, $U, $W, $V> fromReference(jni$_.JReference reference) => Annotated_Nested<$T, $U, $W, $V>.fromReference( T, U, @@ -8932,23 +8932,23 @@ final class $Annotated_Nested$Type< V, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $Annotated_Nested$NullableType<$T, $U, $W, $V>(T, U, W, V); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Annotated_Nested$Type, T, U, W, V); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Annotated_Nested$Type<$T, $U, $W, $V>) && other is $Annotated_Nested$Type<$T, $U, $W, $V> && @@ -8960,41 +8960,41 @@ final class $Annotated_Nested$Type< } /// from: `com.github.dart_lang.jnigen.annotations.Annotated` -class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, - $W extends _$jni.JObject> extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType> $type; +class Annotated<$T extends jni$_.JObject?, $U extends jni$_.JObject, + $W extends jni$_.JObject> extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType> $type; - @_$jni.internal - final _$jni.JObjType<$T> T; + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$W> W; + @jni$_.internal + final jni$_.JObjType<$W> W; - @_$jni.internal + @jni$_.internal Annotated.fromReference( this.T, this.U, this.W, - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type<$T, $U, $W>(T, U, W), super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/annotations/Annotated'); /// The type which includes information such as the signature of this class. static $Annotated$NullableType<$T, $U, $W> nullableType< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $W extends _$jni.JObject>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, - _$jni.JObjType<$W> W, + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $W extends jni$_.JObject>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, + jni$_.JObjType<$W> W, ) { return $Annotated$NullableType<$T, $U, $W>( T, @@ -9003,11 +9003,11 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); } - static $Annotated$Type<$T, $U, $W> type<$T extends _$jni.JObject?, - $U extends _$jni.JObject, $W extends _$jni.JObject>( - _$jni.JObjType<$T> T, - _$jni.JObjType<$U> U, - _$jni.JObjType<$W> W, + static $Annotated$Type<$T, $U, $W> type<$T extends jni$_.JObject?, + $U extends jni$_.JObject, $W extends jni$_.JObject>( + jni$_.JObjType<$T> T, + jni$_.JObjType<$U> U, + jni$_.JObjType<$W> W, ) { return $Annotated$Type<$T, $U, $W>( T, @@ -9059,24 +9059,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void> + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer )>)>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>, - _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.Pointer, + jni$_.Pointer, + jni$_.Pointer)>(); /// from: `public void (T object, U object1, W object2)` /// The returned object must be released after use, by calling the [release] method. @@ -9084,24 +9084,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, $T? object, $U object1, $W object2, { - required _$jni.JObjType<$T> T, - _$jni.JObjType<$U>? U, - _$jni.JObjType<$W>? W, + required jni$_.JObjType<$T> T, + jni$_.JObjType<$U>? U, + jni$_.JObjType<$W>? W, }) { - U ??= _$jni.lowestCommonSuperType([ + U ??= jni$_.lowestCommonSuperType([ object1.$type, - ]) as _$jni.JObjType<$U>; - W ??= _$jni.lowestCommonSuperType([ + ]) as jni$_.JObjType<$U>; + W ??= jni$_.lowestCommonSuperType([ object2.$type, - ]) as _$jni.JObjType<$W>; - final _$object = object?.reference ?? _$jni.jNullReference; + ]) as jni$_.JObjType<$W>; + final _$object = object?.reference ?? jni$_.jNullReference; final _$object1 = object1.reference; final _$object2 = object2.reference; return Annotated<$T, $U, $W>.fromReference( T, U, W, - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr, + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr, _$object.pointer, _$object1.pointer, _$object2.pointer) .reference); } @@ -9111,23 +9111,23 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/lang/String;', ); - static final _hello = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _hello = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String hello()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString hello() { - return _hello(reference.pointer, _id_hello as _$jni.JMethodIDPtr) - .object<_$jni.JString>(const _$jni.JStringType()); + jni$_.JString hello() { + return _hello(reference.pointer, _id_hello as jni$_.JMethodIDPtr) + .object(const jni$_.JStringType()); } static final _id_nullableHello = _class.instanceMethodId( @@ -9135,24 +9135,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)Ljava/lang/String;', ); - static final _nullableHello = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableHello = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.lang.String nullableHello(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? nullableHello( + jni$_.JString? nullableHello( bool z, ) { return _nullableHello(reference.pointer, - _id_nullableHello as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _id_nullableHello as jni$_.JMethodIDPtr, z ? 1 : 0) + .object(const jni$_.JStringNullableType()); } static final _id_echo = _class.instanceMethodId( @@ -9160,26 +9160,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/String;)Ljava/lang/String;', ); - static final _echo = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _echo = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.lang.String echo(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString echo( - _$jni.JString string, + jni$_.JString echo( + jni$_.JString string, ) { final _$string = string.reference; return _echo( - reference.pointer, _id_echo as _$jni.JMethodIDPtr, _$string.pointer) - .object<_$jni.JString>(const _$jni.JStringType()); + reference.pointer, _id_echo as jni$_.JMethodIDPtr, _$string.pointer) + .object(const jni$_.JStringType()); } static final _id_nullableEcho = _class.instanceMethodId( @@ -9187,26 +9187,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/String;)Ljava/lang/String;', ); - static final _nullableEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _nullableEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.lang.String nullableEcho(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JString? nullableEcho( - _$jni.JString? string, + jni$_.JString? nullableEcho( + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; + final _$string = string?.reference ?? jni$_.jNullReference; return _nullableEcho(reference.pointer, - _id_nullableEcho as _$jni.JMethodIDPtr, _$string.pointer) - .object<_$jni.JString?>(const _$jni.JStringNullableType()); + _id_nullableEcho as jni$_.JMethodIDPtr, _$string.pointer) + .object(const jni$_.JStringNullableType()); } static final _id_array = _class.instanceMethodId( @@ -9214,24 +9214,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()[Ljava/lang/String;', ); - static final _array = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _array = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String[] array()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.JString> array() { - return _array(reference.pointer, _id_array as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.JString>>( - const _$jni.JArrayType<_$jni.JString>(_$jni.JStringType())); + jni$_.JArray array() { + return _array(reference.pointer, _id_array as jni$_.JMethodIDPtr) + .object>( + const jni$_.JArrayType(jni$_.JStringType())); } static final _id_arrayOfNullable = _class.instanceMethodId( @@ -9239,26 +9239,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()[Ljava/lang/String;', ); - static final _arrayOfNullable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _arrayOfNullable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.lang.String[] arrayOfNullable()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.JString?> arrayOfNullable() { + jni$_.JArray arrayOfNullable() { return _arrayOfNullable( - reference.pointer, _id_arrayOfNullable as _$jni.JMethodIDPtr) - .object<_$jni.JArray<_$jni.JString?>>( - const _$jni.JArrayType<_$jni.JString?>( - _$jni.JStringNullableType())); + reference.pointer, _id_arrayOfNullable as jni$_.JMethodIDPtr) + .object>( + const jni$_.JArrayType( + jni$_.JStringNullableType())); } static final _id_nullableArray = _class.instanceMethodId( @@ -9266,25 +9266,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)[Ljava/lang/String;', ); - static final _nullableArray = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableArray = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.lang.String[] nullableArray(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.JString>? nullableArray( + jni$_.JArray? nullableArray( bool z, ) { return _nullableArray(reference.pointer, - _id_nullableArray as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JArray<_$jni.JString>?>( - const _$jni.JArrayNullableType<_$jni.JString>(_$jni.JStringType())); + _id_nullableArray as jni$_.JMethodIDPtr, z ? 1 : 0) + .object?>( + const jni$_.JArrayNullableType(jni$_.JStringType())); } static final _id_nullableArrayOfNullable = _class.instanceMethodId( @@ -9292,26 +9292,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)[Ljava/lang/String;', ); - static final _nullableArrayOfNullable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableArrayOfNullable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.lang.String[] nullableArrayOfNullable(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JArray<_$jni.JString?>? nullableArrayOfNullable( + jni$_.JArray? nullableArrayOfNullable( bool z, ) { return _nullableArrayOfNullable(reference.pointer, - _id_nullableArrayOfNullable as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JArray<_$jni.JString?>?>( - const _$jni.JArrayNullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + _id_nullableArrayOfNullable as jni$_.JMethodIDPtr, z ? 1 : 0) + .object?>( + const jni$_.JArrayNullableType( + jni$_.JStringNullableType())); } static final _id_list = _class.instanceMethodId( @@ -9319,24 +9319,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/util/List;', ); - static final _list = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _list = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List list()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JString> list() { - return _list(reference.pointer, _id_list as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JString>>( - const _$jni.JListType<_$jni.JString>(_$jni.JStringType())); + jni$_.JList list() { + return _list(reference.pointer, _id_list as jni$_.JMethodIDPtr) + .object>( + const jni$_.JListType(jni$_.JStringType())); } static final _id_listOfNullable = _class.instanceMethodId( @@ -9344,25 +9344,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/util/List;', ); - static final _listOfNullable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _listOfNullable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List listOfNullable()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JString?> listOfNullable() { + jni$_.JList listOfNullable() { return _listOfNullable( - reference.pointer, _id_listOfNullable as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JString?>>( - const _$jni.JListType<_$jni.JString?>(_$jni.JStringNullableType())); + reference.pointer, _id_listOfNullable as jni$_.JMethodIDPtr) + .object>( + const jni$_.JListType(jni$_.JStringNullableType())); } static final _id_nullableList = _class.instanceMethodId( @@ -9370,25 +9370,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)Ljava/util/List;', ); - static final _nullableList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.util.List nullableList(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JString>? nullableList( + jni$_.JList? nullableList( bool z, ) { return _nullableList(reference.pointer, - _id_nullableList as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JList<_$jni.JString>?>( - const _$jni.JListNullableType<_$jni.JString>(_$jni.JStringType())); + _id_nullableList as jni$_.JMethodIDPtr, z ? 1 : 0) + .object?>( + const jni$_.JListNullableType(jni$_.JStringType())); } static final _id_nullableListOfNullable = _class.instanceMethodId( @@ -9396,26 +9396,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)Ljava/util/List;', ); - static final _nullableListOfNullable = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableListOfNullable = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.util.List nullableListOfNullable(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JString?>? nullableListOfNullable( + jni$_.JList? nullableListOfNullable( bool z, ) { return _nullableListOfNullable(reference.pointer, - _id_nullableListOfNullable as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JList<_$jni.JString?>?>( - const _$jni.JListNullableType<_$jni.JString?>( - _$jni.JStringNullableType())); + _id_nullableListOfNullable as jni$_.JMethodIDPtr, z ? 1 : 0) + .object?>( + const jni$_.JListNullableType( + jni$_.JStringNullableType())); } static final _id_classGenericEcho = _class.instanceMethodId( @@ -9423,25 +9423,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _classGenericEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _classGenericEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T classGenericEcho(T object)` /// The returned object must be released after use, by calling the [release] method. $T classGenericEcho( $T object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _classGenericEcho(reference.pointer, - _id_classGenericEcho as _$jni.JMethodIDPtr, _$object.pointer) + _id_classGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$T>(T); } @@ -9450,26 +9450,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _nullableClassGenericEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _nullableClassGenericEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T nullableClassGenericEcho(T object)` /// The returned object must be released after use, by calling the [release] method. $T? nullableClassGenericEcho( $T? object, ) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _nullableClassGenericEcho( reference.pointer, - _id_nullableClassGenericEcho as _$jni.JMethodIDPtr, + _id_nullableClassGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$T?>(T.nullableType); } @@ -9479,26 +9479,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _methodGenericEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V methodGenericEcho(V object)` /// The returned object must be released after use, by calling the [release] method. - $V methodGenericEcho<$V extends _$jni.JObject?>( + $V methodGenericEcho<$V extends jni$_.JObject?>( $V object, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _methodGenericEcho(reference.pointer, - _id_methodGenericEcho as _$jni.JMethodIDPtr, _$object.pointer) + _id_methodGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$V>(V); } @@ -9507,29 +9507,29 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _methodGenericEcho2 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericEcho2 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V methodGenericEcho2(V object)` /// The returned object must be released after use, by calling the [release] method. - $V methodGenericEcho2<$V extends _$jni.JObject>( + $V methodGenericEcho2<$V extends jni$_.JObject>( $V object, { - _$jni.JObjType<$V>? V, + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ + V ??= jni$_.lowestCommonSuperType([ object.$type, - ]) as _$jni.JObjType<$V>; + ]) as jni$_.JObjType<$V>; final _$object = object.reference; return _methodGenericEcho2(reference.pointer, - _id_methodGenericEcho2 as _$jni.JMethodIDPtr, _$object.pointer) + _id_methodGenericEcho2 as jni$_.JMethodIDPtr, _$object.pointer) .object<$V>(V); } @@ -9538,29 +9538,29 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _methodGenericEcho3 = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericEcho3 = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V methodGenericEcho3(V object)` /// The returned object must be released after use, by calling the [release] method. - $V methodGenericEcho3<$V extends _$jni.JObject>( + $V methodGenericEcho3<$V extends jni$_.JObject>( $V object, { - _$jni.JObjType<$V>? V, + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ + V ??= jni$_.lowestCommonSuperType([ object.$type, - ]) as _$jni.JObjType<$V>; + ]) as jni$_.JObjType<$V>; final _$object = object.reference; return _methodGenericEcho3(reference.pointer, - _id_methodGenericEcho3 as _$jni.JMethodIDPtr, _$object.pointer) + _id_methodGenericEcho3 as jni$_.JMethodIDPtr, _$object.pointer) .object<$V>(V); } @@ -9570,31 +9570,31 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _nullableReturnMethodGenericEcho = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public V nullableReturnMethodGenericEcho(V object, boolean z)` /// The returned object must be released after use, by calling the [release] method. - $V? nullableReturnMethodGenericEcho<$V extends _$jni.JObject?>( + $V? nullableReturnMethodGenericEcho<$V extends jni$_.JObject?>( $V object, bool z, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _nullableReturnMethodGenericEcho( reference.pointer, - _id_nullableReturnMethodGenericEcho as _$jni.JMethodIDPtr, + _id_nullableReturnMethodGenericEcho as jni$_.JMethodIDPtr, _$object.pointer, z ? 1 : 0) .object<$V?>(V.nullableType); @@ -9606,34 +9606,34 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _nullableReturnMethodGenericEcho2 = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs< + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs< ( - _$jni.Pointer<_$jni.Void>, - _$jni.Int32 + jni$_.Pointer, + jni$_.Int32 )>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public V nullableReturnMethodGenericEcho2(V object, boolean z)` /// The returned object must be released after use, by calling the [release] method. - $V? nullableReturnMethodGenericEcho2<$V extends _$jni.JObject>( + $V? nullableReturnMethodGenericEcho2<$V extends jni$_.JObject>( $V object, bool z, { - _$jni.JObjType<$V>? V, + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ + V ??= jni$_.lowestCommonSuperType([ object.$type, - ]) as _$jni.JObjType<$V>; + ]) as jni$_.JObjType<$V>; final _$object = object.reference; return _nullableReturnMethodGenericEcho2( reference.pointer, - _id_nullableReturnMethodGenericEcho2 as _$jni.JMethodIDPtr, + _id_nullableReturnMethodGenericEcho2 as jni$_.JMethodIDPtr, _$object.pointer, z ? 1 : 0) .object<$V?>(V.nullableType); @@ -9644,27 +9644,27 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;)Ljava/lang/Object;', ); - static final _nullableMethodGenericEcho = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _nullableMethodGenericEcho = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V nullableMethodGenericEcho(V object)` /// The returned object must be released after use, by calling the [release] method. - $V nullableMethodGenericEcho<$V extends _$jni.JObject?>( + $V nullableMethodGenericEcho<$V extends jni$_.JObject?>( $V object, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _nullableMethodGenericEcho( reference.pointer, - _id_nullableMethodGenericEcho as _$jni.JMethodIDPtr, + _id_nullableMethodGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$V>(V); } @@ -9675,27 +9675,27 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _noAnnotationMethodGenericEcho = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V noAnnotationMethodGenericEcho(V object)` /// The returned object must be released after use, by calling the [release] method. - $V? noAnnotationMethodGenericEcho<$V extends _$jni.JObject?>( + $V? noAnnotationMethodGenericEcho<$V extends jni$_.JObject?>( $V? object, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _noAnnotationMethodGenericEcho( reference.pointer, - _id_noAnnotationMethodGenericEcho as _$jni.JMethodIDPtr, + _id_noAnnotationMethodGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$V?>(V.nullableType); } @@ -9706,27 +9706,27 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _nullableArgMethodGenericEcho = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V nullableArgMethodGenericEcho(V object)` /// The returned object must be released after use, by calling the [release] method. - $V nullableArgMethodGenericEcho<$V extends _$jni.JObject>( + $V nullableArgMethodGenericEcho<$V extends jni$_.JObject>( $V? object, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _nullableArgMethodGenericEcho( reference.pointer, - _id_nullableArgMethodGenericEcho as _$jni.JMethodIDPtr, + _id_nullableArgMethodGenericEcho as jni$_.JMethodIDPtr, _$object.pointer) .object<$V>(V); } @@ -9736,24 +9736,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/util/List;', ); - static final _classGenericList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _classGenericList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List classGenericList()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$T> classGenericList() { + jni$_.JList<$T> classGenericList() { return _classGenericList( - reference.pointer, _id_classGenericList as _$jni.JMethodIDPtr) - .object<_$jni.JList<$T>>(_$jni.JListType<$T>(T)); + reference.pointer, _id_classGenericList as jni$_.JMethodIDPtr) + .object>(jni$_.JListType<$T>(T)); } static final _id_classGenericListOfNullable = _class.instanceMethodId( @@ -9762,24 +9762,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _classGenericListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List classGenericListOfNullable()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$T?> classGenericListOfNullable() { + jni$_.JList<$T?> classGenericListOfNullable() { return _classGenericListOfNullable(reference.pointer, - _id_classGenericListOfNullable as _$jni.JMethodIDPtr) - .object<_$jni.JList<$T?>>(_$jni.JListType<$T?>(T.nullableType)); + _id_classGenericListOfNullable as jni$_.JMethodIDPtr) + .object>(jni$_.JListType<$T?>(T.nullableType)); } static final _id_nullableClassGenericList = _class.instanceMethodId( @@ -9787,24 +9787,24 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)Ljava/util/List;', ); - static final _nullableClassGenericList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableClassGenericList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.util.List nullableClassGenericList(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$T>? nullableClassGenericList( + jni$_.JList<$T>? nullableClassGenericList( bool z, ) { return _nullableClassGenericList(reference.pointer, - _id_nullableClassGenericList as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JList<$T>?>(_$jni.JListNullableType<$T>(T)); + _id_nullableClassGenericList as jni$_.JMethodIDPtr, z ? 1 : 0) + .object?>(jni$_.JListNullableType<$T>(T)); } static final _id_nullableClassGenericListOfNullable = _class.instanceMethodId( @@ -9813,26 +9813,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _nullableClassGenericListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.util.List nullableClassGenericListOfNullable(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$T?>? nullableClassGenericListOfNullable( + jni$_.JList<$T?>? nullableClassGenericListOfNullable( bool z, ) { return _nullableClassGenericListOfNullable( reference.pointer, - _id_nullableClassGenericListOfNullable as _$jni.JMethodIDPtr, + _id_nullableClassGenericListOfNullable as jni$_.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JList<$T?>?>( - _$jni.JListNullableType<$T?>(T.nullableType)); + .object?>( + jni$_.JListNullableType<$T?>(T.nullableType)); } static final _id_methodGenericList = _class.instanceMethodId( @@ -9840,27 +9840,27 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;)Ljava/util/List;', ); - static final _methodGenericList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _methodGenericList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.util.List methodGenericList(V object)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$V> methodGenericList<$V extends _$jni.JObject?>( + jni$_.JList<$V> methodGenericList<$V extends jni$_.JObject?>( $V object, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _methodGenericList(reference.pointer, - _id_methodGenericList as _$jni.JMethodIDPtr, _$object.pointer) - .object<_$jni.JList<$V>>(_$jni.JListType<$V>(V)); + _id_methodGenericList as jni$_.JMethodIDPtr, _$object.pointer) + .object>(jni$_.JListType<$V>(V)); } static final _id_methodGenericListOfNullable = _class.instanceMethodId( @@ -9869,26 +9869,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _methodGenericListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List methodGenericListOfNullable()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$V?> methodGenericListOfNullable<$V extends _$jni.JObject?>({ - required _$jni.JObjType<$V> V, + jni$_.JList<$V?> methodGenericListOfNullable<$V extends jni$_.JObject?>({ + required jni$_.JObjType<$V> V, }) { return _methodGenericListOfNullable(reference.pointer, - _id_methodGenericListOfNullable as _$jni.JMethodIDPtr) - .object<_$jni.JList<$V?>>(_$jni.JListType<$V?>(V.nullableType)); + _id_methodGenericListOfNullable as jni$_.JMethodIDPtr) + .object>(jni$_.JListType<$V?>(V.nullableType)); } static final _id_nullableMethodGenericList = _class.instanceMethodId( @@ -9896,32 +9896,32 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/lang/Object;Z)Ljava/util/List;', ); - static final _nullableMethodGenericList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni - .VarArgs<(_$jni.Pointer<_$jni.Void>, _$jni.Int32)>)>>( + static final _nullableMethodGenericList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_ + .VarArgs<(jni$_.Pointer, jni$_.Int32)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>, int)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer, int)>(); /// from: `public java.util.List nullableMethodGenericList(V object, boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$V>? nullableMethodGenericList<$V extends _$jni.JObject?>( + jni$_.JList<$V>? nullableMethodGenericList<$V extends jni$_.JObject?>( $V object, bool z, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { - final _$object = object?.reference ?? _$jni.jNullReference; + final _$object = object?.reference ?? jni$_.jNullReference; return _nullableMethodGenericList( reference.pointer, - _id_nullableMethodGenericList as _$jni.JMethodIDPtr, + _id_nullableMethodGenericList as jni$_.JMethodIDPtr, _$object.pointer, z ? 1 : 0) - .object<_$jni.JList<$V>?>(_$jni.JListNullableType<$V>(V)); + .object?>(jni$_.JListNullableType<$V>(V)); } static final _id_nullableMethodGenericListOfNullable = @@ -9931,28 +9931,28 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _nullableMethodGenericListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.VarArgs<(_$jni.Int32,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.VarArgs<(jni$_.Int32,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.util.List nullableMethodGenericListOfNullable(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<$V?>? - nullableMethodGenericListOfNullable<$V extends _$jni.JObject?>( + jni$_.JList<$V?>? + nullableMethodGenericListOfNullable<$V extends jni$_.JObject?>( bool z, { - required _$jni.JObjType<$V> V, + required jni$_.JObjType<$V> V, }) { return _nullableMethodGenericListOfNullable( reference.pointer, - _id_nullableMethodGenericListOfNullable as _$jni.JMethodIDPtr, + _id_nullableMethodGenericListOfNullable as jni$_.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JList<$V?>?>( - _$jni.JListNullableType<$V?>(V.nullableType)); + .object?>( + jni$_.JListNullableType<$V?>(V.nullableType)); } static final _id_firstOfClassGenericList = _class.instanceMethodId( @@ -9960,25 +9960,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/util/List;)Ljava/lang/Object;', ); - static final _firstOfClassGenericList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstOfClassGenericList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstOfClassGenericList(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. $T? firstOfClassGenericList( - _$jni.JList<$T> list, + jni$_.JList<$T> list, ) { final _$list = list.reference; return _firstOfClassGenericList(reference.pointer, - _id_firstOfClassGenericList as _$jni.JMethodIDPtr, _$list.pointer) + _id_firstOfClassGenericList as jni$_.JMethodIDPtr, _$list.pointer) .object<$T?>(T.nullableType); } @@ -9988,26 +9988,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstOfClassGenericNullableList = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstOfClassGenericNullableList(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. $T? firstOfClassGenericNullableList( - _$jni.JList<$T>? list, + jni$_.JList<$T>? list, ) { - final _$list = list?.reference ?? _$jni.jNullReference; + final _$list = list?.reference ?? jni$_.jNullReference; return _firstOfClassGenericNullableList( reference.pointer, - _id_firstOfClassGenericNullableList as _$jni.JMethodIDPtr, + _id_firstOfClassGenericNullableList as jni$_.JMethodIDPtr, _$list.pointer) .object<$T?>(T.nullableType); } @@ -10018,26 +10018,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstOfClassGenericListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstOfClassGenericListOfNullable(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. $T? firstOfClassGenericListOfNullable( - _$jni.JList<$T?> list, + jni$_.JList<$T?> list, ) { final _$list = list.reference; return _firstOfClassGenericListOfNullable( reference.pointer, - _id_firstOfClassGenericListOfNullable as _$jni.JMethodIDPtr, + _id_firstOfClassGenericListOfNullable as jni$_.JMethodIDPtr, _$list.pointer) .object<$T?>(T.nullableType); } @@ -10049,26 +10049,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstOfClassGenericNullableListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstOfClassGenericNullableListOfNullable(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. $T? firstOfClassGenericNullableListOfNullable( - _$jni.JList<$T?>? list, + jni$_.JList<$T?>? list, ) { - final _$list = list?.reference ?? _$jni.jNullReference; + final _$list = list?.reference ?? jni$_.jNullReference; return _firstOfClassGenericNullableListOfNullable( reference.pointer, - _id_firstOfClassGenericNullableListOfNullable as _$jni.JMethodIDPtr, + _id_firstOfClassGenericNullableListOfNullable as jni$_.JMethodIDPtr, _$list.pointer) .object<$T?>(T.nullableType); } @@ -10078,29 +10078,29 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/util/List;)Ljava/lang/Object;', ); - static final _firstOfMethodGenericList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstOfMethodGenericList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstOfMethodGenericList(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - $V? firstOfMethodGenericList<$V extends _$jni.JObject?>( - _$jni.JList<$V> list, { - _$jni.JObjType<$V>? V, + $V? firstOfMethodGenericList<$V extends jni$_.JObject?>( + jni$_.JList<$V> list, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (list.$type as _$jni.JListType<_$core.dynamic>).E, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (list.$type as jni$_.JListType).E, + ]) as jni$_.JObjType<$V>; final _$list = list.reference; return _firstOfMethodGenericList(reference.pointer, - _id_firstOfMethodGenericList as _$jni.JMethodIDPtr, _$list.pointer) + _id_firstOfMethodGenericList as jni$_.JMethodIDPtr, _$list.pointer) .object<$V?>(V.nullableType); } @@ -10110,27 +10110,27 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstOfMethodGenericNullableList = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstOfMethodGenericNullableList(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - $V? firstOfMethodGenericNullableList<$V extends _$jni.JObject?>( - _$jni.JList<$V>? list, { - required _$jni.JObjType<$V> V, + $V? firstOfMethodGenericNullableList<$V extends jni$_.JObject?>( + jni$_.JList<$V>? list, { + required jni$_.JObjType<$V> V, }) { - final _$list = list?.reference ?? _$jni.jNullReference; + final _$list = list?.reference ?? jni$_.jNullReference; return _firstOfMethodGenericNullableList( reference.pointer, - _id_firstOfMethodGenericNullableList as _$jni.JMethodIDPtr, + _id_firstOfMethodGenericNullableList as jni$_.JMethodIDPtr, _$list.pointer) .object<$V?>(V.nullableType); } @@ -10141,30 +10141,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstOfMethodGenericListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstOfMethodGenericListOfNullable(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - $V? firstOfMethodGenericListOfNullable<$V extends _$jni.JObject?>( - _$jni.JList<$V?> list, { - _$jni.JObjType<$V>? V, + $V? firstOfMethodGenericListOfNullable<$V extends jni$_.JObject?>( + jni$_.JList<$V?> list, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (list.$type as _$jni.JListType<_$core.dynamic>).E, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (list.$type as jni$_.JListType).E, + ]) as jni$_.JObjType<$V>; final _$list = list.reference; return _firstOfMethodGenericListOfNullable( reference.pointer, - _id_firstOfMethodGenericListOfNullable as _$jni.JMethodIDPtr, + _id_firstOfMethodGenericListOfNullable as jni$_.JMethodIDPtr, _$list.pointer) .object<$V?>(V.nullableType); } @@ -10176,28 +10176,28 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstOfMethodGenericNullableListOfNullable = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstOfMethodGenericNullableListOfNullable(java.util.List list)` /// The returned object must be released after use, by calling the [release] method. - $V? firstOfMethodGenericNullableListOfNullable<$V extends _$jni.JObject?>( - _$jni.JList<$V?>? list, { - required _$jni.JObjType<$V> V, + $V? firstOfMethodGenericNullableListOfNullable<$V extends jni$_.JObject?>( + jni$_.JList<$V?>? list, { + required jni$_.JObjType<$V> V, }) { - final _$list = list?.reference ?? _$jni.jNullReference; + final _$list = list?.reference ?? jni$_.jNullReference; return _firstOfMethodGenericNullableListOfNullable( reference.pointer, _id_firstOfMethodGenericNullableListOfNullable - as _$jni.JMethodIDPtr, + as jni$_.JMethodIDPtr, _$list.pointer) .object<$V?>(V.nullableType); } @@ -10207,29 +10207,29 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/util/Map;)Ljava/lang/Object;', ); - static final _firstKeyOfComboMap = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstKeyOfComboMap = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstKeyOfComboMap(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $T? firstKeyOfComboMap<$V extends _$jni.JObject?>( - _$jni.JMap<$T, $V> map, { - _$jni.JObjType<$V>? V, + $T? firstKeyOfComboMap<$V extends jni$_.JObject?>( + jni$_.JMap<$T, $V> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstKeyOfComboMap(reference.pointer, - _id_firstKeyOfComboMap as _$jni.JMethodIDPtr, _$map.pointer) + _id_firstKeyOfComboMap as jni$_.JMethodIDPtr, _$map.pointer) .object<$T?>(T.nullableType); } @@ -10238,29 +10238,29 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/util/Map;)Ljava/lang/Object;', ); - static final _firstValueOfComboMap = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstValueOfComboMap = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstValueOfComboMap(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $V? firstValueOfComboMap<$V extends _$jni.JObject?>( - _$jni.JMap<$T, $V> map, { - _$jni.JObjType<$V>? V, + $V? firstValueOfComboMap<$V extends jni$_.JObject?>( + jni$_.JMap<$T, $V> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstValueOfComboMap(reference.pointer, - _id_firstValueOfComboMap as _$jni.JMethodIDPtr, _$map.pointer) + _id_firstValueOfComboMap as jni$_.JMethodIDPtr, _$map.pointer) .object<$V?>(V.nullableType); } @@ -10270,30 +10270,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstKeyOfComboMapNullableKey = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstKeyOfComboMapNullableKey(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $T? firstKeyOfComboMapNullableKey<$V extends _$jni.JObject?>( - _$jni.JMap<$T?, $V> map, { - _$jni.JObjType<$V>? V, + $T? firstKeyOfComboMapNullableKey<$V extends jni$_.JObject?>( + jni$_.JMap<$T?, $V> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstKeyOfComboMapNullableKey( reference.pointer, - _id_firstKeyOfComboMapNullableKey as _$jni.JMethodIDPtr, + _id_firstKeyOfComboMapNullableKey as jni$_.JMethodIDPtr, _$map.pointer) .object<$T?>(T.nullableType); } @@ -10304,30 +10304,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstValueOfComboMapNullableKey = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstValueOfComboMapNullableKey(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $V? firstValueOfComboMapNullableKey<$V extends _$jni.JObject?>( - _$jni.JMap<$T?, $V> map, { - _$jni.JObjType<$V>? V, + $V? firstValueOfComboMapNullableKey<$V extends jni$_.JObject?>( + jni$_.JMap<$T?, $V> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstValueOfComboMapNullableKey( reference.pointer, - _id_firstValueOfComboMapNullableKey as _$jni.JMethodIDPtr, + _id_firstValueOfComboMapNullableKey as jni$_.JMethodIDPtr, _$map.pointer) .object<$V?>(V.nullableType); } @@ -10338,30 +10338,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstKeyOfComboMapNullableValue = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstKeyOfComboMapNullableValue(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $T? firstKeyOfComboMapNullableValue<$V extends _$jni.JObject?>( - _$jni.JMap<$T, $V?> map, { - _$jni.JObjType<$V>? V, + $T? firstKeyOfComboMapNullableValue<$V extends jni$_.JObject?>( + jni$_.JMap<$T, $V?> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstKeyOfComboMapNullableValue( reference.pointer, - _id_firstKeyOfComboMapNullableValue as _$jni.JMethodIDPtr, + _id_firstKeyOfComboMapNullableValue as jni$_.JMethodIDPtr, _$map.pointer) .object<$T?>(T.nullableType); } @@ -10372,30 +10372,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstValueOfComboMapNullableValue = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstValueOfComboMapNullableValue(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $V? firstValueOfComboMapNullableValue<$V extends _$jni.JObject?>( - _$jni.JMap<$T, $V?> map, { - _$jni.JObjType<$V>? V, + $V? firstValueOfComboMapNullableValue<$V extends jni$_.JObject?>( + jni$_.JMap<$T, $V?> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstValueOfComboMapNullableValue( reference.pointer, - _id_firstValueOfComboMapNullableValue as _$jni.JMethodIDPtr, + _id_firstValueOfComboMapNullableValue as jni$_.JMethodIDPtr, _$map.pointer) .object<$V?>(V.nullableType); } @@ -10407,30 +10407,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstKeyOfComboMapNullableKeyAndValue = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public T firstKeyOfComboMapNullableKeyAndValue(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $T? firstKeyOfComboMapNullableKeyAndValue<$V extends _$jni.JObject?>( - _$jni.JMap<$T?, $V?> map, { - _$jni.JObjType<$V>? V, + $T? firstKeyOfComboMapNullableKeyAndValue<$V extends jni$_.JObject?>( + jni$_.JMap<$T?, $V?> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstKeyOfComboMapNullableKeyAndValue( reference.pointer, - _id_firstKeyOfComboMapNullableKeyAndValue as _$jni.JMethodIDPtr, + _id_firstKeyOfComboMapNullableKeyAndValue as jni$_.JMethodIDPtr, _$map.pointer) .object<$T?>(T.nullableType); } @@ -10442,30 +10442,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, ); static final _firstValueOfComboMapNullableKeyAndValue = - _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public V firstValueOfComboMapNullableKeyAndValue(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - $V? firstValueOfComboMapNullableKeyAndValue<$V extends _$jni.JObject?>( - _$jni.JMap<$T?, $V?> map, { - _$jni.JObjType<$V>? V, + $V? firstValueOfComboMapNullableKeyAndValue<$V extends jni$_.JObject?>( + jni$_.JMap<$T?, $V?> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstValueOfComboMapNullableKeyAndValue( reference.pointer, - _id_firstValueOfComboMapNullableKeyAndValue as _$jni.JMethodIDPtr, + _id_firstValueOfComboMapNullableKeyAndValue as jni$_.JMethodIDPtr, _$map.pointer) .object<$V?>(V.nullableType); } @@ -10475,30 +10475,30 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Ljava/util/Map;)Ljava/util/Map$Entry;', ); - static final _firstEntryOfComboMap = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _firstEntryOfComboMap = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `public java.util.Map$Entry firstEntryOfComboMap(java.util.Map map)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JObject? firstEntryOfComboMap<$V extends _$jni.JObject?>( - _$jni.JMap<$T, $V> map, { - _$jni.JObjType<$V>? V, + jni$_.JObject? firstEntryOfComboMap<$V extends jni$_.JObject?>( + jni$_.JMap<$T, $V> map, { + jni$_.JObjType<$V>? V, }) { - V ??= _$jni.lowestCommonSuperType([ - (map.$type as _$jni.JMapType<_$core.dynamic, _$core.dynamic>).V, - ]) as _$jni.JObjType<$V>; + V ??= jni$_.lowestCommonSuperType([ + (map.$type as jni$_.JMapType).V, + ]) as jni$_.JObjType<$V>; final _$map = map.reference; return _firstEntryOfComboMap(reference.pointer, - _id_firstEntryOfComboMap as _$jni.JMethodIDPtr, _$map.pointer) - .object<_$jni.JObject?>(const _$jni.JObjectNullableType()); + _id_firstEntryOfComboMap as jni$_.JMethodIDPtr, _$map.pointer) + .object(const jni$_.JObjectNullableType()); } static final _id_getW = _class.instanceMethodId( @@ -10506,22 +10506,22 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/lang/Object;', ); - static final _getW = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _getW = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public W getW()` /// The returned object must be released after use, by calling the [release] method. $W getW() { - return _getW(reference.pointer, _id_getW as _$jni.JMethodIDPtr) + return _getW(reference.pointer, _id_getW as jni$_.JMethodIDPtr) .object<$W>(W); } @@ -10530,15 +10530,15 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)Ljava/lang/Object;', ); - static final _nullableGetW = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _nullableGetW = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public W nullableGetW(boolean z)` /// The returned object must be released after use, by calling the [release] method. @@ -10546,7 +10546,7 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, bool z, ) { return _nullableGetW(reference.pointer, - _id_nullableGetW as _$jni.JMethodIDPtr, z ? 1 : 0) + _id_nullableGetW as jni$_.JMethodIDPtr, z ? 1 : 0) .object<$W?>(W.nullableType); } @@ -10555,26 +10555,26 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/util/List;', ); - static final _list3dOfT = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _list3dOfT = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List list3dOfT()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JList<_$jni.JList<$T?>>> list3dOfT() { - return _list3dOfT(reference.pointer, _id_list3dOfT as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JList<_$jni.JList<$T?>>>>( - _$jni.JListType<_$jni.JList<_$jni.JList<$T?>>>( - _$jni.JListType<_$jni.JList<$T?>>( - _$jni.JListType<$T?>(T.nullableType)))); + jni$_.JList>> list3dOfT() { + return _list3dOfT(reference.pointer, _id_list3dOfT as jni$_.JMethodIDPtr) + .object>>>( + jni$_.JListType>>( + jni$_.JListType>( + jni$_.JListType<$T?>(T.nullableType)))); } static final _id_list3dOfU = _class.instanceMethodId( @@ -10582,25 +10582,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/util/List;', ); - static final _list3dOfU = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _list3dOfU = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List list3dOfU()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JList<_$jni.JList<$U>>> list3dOfU() { - return _list3dOfU(reference.pointer, _id_list3dOfU as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JList<_$jni.JList<$U>>>>( - _$jni.JListType<_$jni.JList<_$jni.JList<$U>>>( - _$jni.JListType<_$jni.JList<$U>>(_$jni.JListType<$U>(U)))); + jni$_.JList>> list3dOfU() { + return _list3dOfU(reference.pointer, _id_list3dOfU as jni$_.JMethodIDPtr) + .object>>>( + jni$_.JListType>>( + jni$_.JListType>(jni$_.JListType<$U>(U)))); } static final _id_list3dOfW = _class.instanceMethodId( @@ -10608,25 +10608,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/util/List;', ); - static final _list3dOfW = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _list3dOfW = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List list3dOfW()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JList<_$jni.JList<$W>>> list3dOfW() { - return _list3dOfW(reference.pointer, _id_list3dOfW as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JList<_$jni.JList<$W>>>>( - _$jni.JListType<_$jni.JList<_$jni.JList<$W>>>( - _$jni.JListType<_$jni.JList<$W>>(_$jni.JListType<$W>(W)))); + jni$_.JList>> list3dOfW() { + return _list3dOfW(reference.pointer, _id_list3dOfW as jni$_.JMethodIDPtr) + .object>>>( + jni$_.JListType>>( + jni$_.JListType>(jni$_.JListType<$W>(W)))); } static final _id_list3dOfNullableU = _class.instanceMethodId( @@ -10634,27 +10634,27 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)Ljava/util/List;', ); - static final _list3dOfNullableU = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _list3dOfNullableU = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.util.List list3dOfNullableU(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JList<_$jni.JList<$U?>>> list3dOfNullableU( + jni$_.JList>> list3dOfNullableU( bool z, ) { return _list3dOfNullableU(reference.pointer, - _id_list3dOfNullableU as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JList<_$jni.JList<_$jni.JList<$U?>>>>( - _$jni.JListType<_$jni.JList<_$jni.JList<$U?>>>( - _$jni.JListType<_$jni.JList<$U?>>( - _$jni.JListType<$U?>(U.nullableType)))); + _id_list3dOfNullableU as jni$_.JMethodIDPtr, z ? 1 : 0) + .object>>>( + jni$_.JListType>>( + jni$_.JListType>( + jni$_.JListType<$U?>(U.nullableType)))); } static final _id_list3dOfNullableW = _class.instanceMethodId( @@ -10662,27 +10662,27 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'(Z)Ljava/util/List;', ); - static final _list3dOfNullableW = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Int32,)>)>>('globalEnv_CallObjectMethod') + static final _list3dOfNullableW = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, _$jni.JMethodIDPtr, int)>(); + jni$_.JniResult Function( + jni$_.Pointer, jni$_.JMethodIDPtr, int)>(); /// from: `public java.util.List list3dOfNullableW(boolean z)` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JList<_$jni.JList<$W?>>> list3dOfNullableW( + jni$_.JList>> list3dOfNullableW( bool z, ) { return _list3dOfNullableW(reference.pointer, - _id_list3dOfNullableW as _$jni.JMethodIDPtr, z ? 1 : 0) - .object<_$jni.JList<_$jni.JList<_$jni.JList<$W?>>>>( - _$jni.JListType<_$jni.JList<_$jni.JList<$W?>>>( - _$jni.JListType<_$jni.JList<$W?>>( - _$jni.JListType<$W?>(W.nullableType)))); + _id_list3dOfNullableW as jni$_.JMethodIDPtr, z ? 1 : 0) + .object>>>( + jni$_.JListType>>( + jni$_.JListType>( + jni$_.JListType<$W?>(W.nullableType)))); } static final _id_nested = _class.instanceMethodId( @@ -10690,25 +10690,25 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Lcom/github/dart_lang/jnigen/annotations/Annotated$Nested;', ); - static final _nested = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _nested = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public com.github.dart_lang.jnigen.annotations.Annotated.Nested nested()` /// The returned object must be released after use, by calling the [release] method. - Annotated_Nested<$T?, $U, $W, _$jni.JInteger>? nested() { - return _nested(reference.pointer, _id_nested as _$jni.JMethodIDPtr) - .object?>( - $Annotated_Nested$NullableType<$T?, $U, $W, _$jni.JInteger>( - T.nullableType, U, W, const _$jni.JIntegerType())); + Annotated_Nested<$T?, $U, $W, jni$_.JInteger>? nested() { + return _nested(reference.pointer, _id_nested as jni$_.JMethodIDPtr) + .object?>( + $Annotated_Nested$NullableType<$T?, $U, $W, jni$_.JInteger>( + T.nullableType, U, W, const jni$_.JIntegerType())); } static final _id_intList = _class.instanceMethodId( @@ -10716,55 +10716,55 @@ class Annotated<$T extends _$jni.JObject?, $U extends _$jni.JObject, r'()Ljava/util/List;', ); - static final _intList = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _intList = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public java.util.List intList()` /// The returned object must be released after use, by calling the [release] method. - _$jni.JList<_$jni.JInteger> intList() { - return _intList(reference.pointer, _id_intList as _$jni.JMethodIDPtr) - .object<_$jni.JList<_$jni.JInteger>>( - const _$jni.JListType<_$jni.JInteger>(_$jni.JIntegerType())); + jni$_.JList intList() { + return _intList(reference.pointer, _id_intList as jni$_.JMethodIDPtr) + .object>( + const jni$_.JListType(jni$_.JIntegerType())); } } final class $Annotated$NullableType< - $T extends _$jni.JObject?, - $U extends _$jni.JObject, - $W extends _$jni.JObject> extends _$jni.JObjType?> { - @_$jni.internal - final _$jni.JObjType<$T> T; + $T extends jni$_.JObject?, + $U extends jni$_.JObject, + $W extends jni$_.JObject> extends jni$_.JObjType?> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$W> W; + @jni$_.internal + final jni$_.JObjType<$W> W; - @_$jni.internal + @jni$_.internal const $Annotated$NullableType( this.T, this.U, this.W, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/Annotated;'; - @_$jni.internal - @_$core.override - Annotated<$T, $U, $W>? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Annotated<$T, $U, $W>? fromReference(jni$_.JReference reference) => reference.isNull ? null : Annotated<$T, $U, $W>.fromReference( @@ -10773,22 +10773,22 @@ final class $Annotated$NullableType< W, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Annotated$NullableType, T, U, W); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Annotated$NullableType<$T, $U, $W>) && other is $Annotated$NullableType<$T, $U, $W> && @@ -10798,55 +10798,55 @@ final class $Annotated$NullableType< } } -final class $Annotated$Type<$T extends _$jni.JObject?, $U extends _$jni.JObject, - $W extends _$jni.JObject> extends _$jni.JObjType> { - @_$jni.internal - final _$jni.JObjType<$T> T; +final class $Annotated$Type<$T extends jni$_.JObject?, $U extends jni$_.JObject, + $W extends jni$_.JObject> extends jni$_.JObjType> { + @jni$_.internal + final jni$_.JObjType<$T> T; - @_$jni.internal - final _$jni.JObjType<$U> U; + @jni$_.internal + final jni$_.JObjType<$U> U; - @_$jni.internal - final _$jni.JObjType<$W> W; + @jni$_.internal + final jni$_.JObjType<$W> W; - @_$jni.internal + @jni$_.internal const $Annotated$Type( this.T, this.U, this.W, ); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/Annotated;'; - @_$jni.internal - @_$core.override - Annotated<$T, $U, $W> fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + Annotated<$T, $U, $W> fromReference(jni$_.JReference reference) => Annotated<$T, $U, $W>.fromReference( T, U, W, reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType?> get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType?> get nullableType => $Annotated$NullableType<$T, $U, $W>(T, U, W); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => Object.hash($Annotated$Type, T, U, W); - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Annotated$Type<$T, $U, $W>) && other is $Annotated$Type<$T, $U, $W> && @@ -10857,18 +10857,18 @@ final class $Annotated$Type<$T extends _$jni.JObject?, $U extends _$jni.JObject, } /// from: `com.github.dart_lang.jnigen.annotations.JsonSerializable$Case` -class JsonSerializable_Case extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonSerializable_Case extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonSerializable_Case.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/annotations/JsonSerializable$Case'); /// The type which includes information such as the signature of this class. @@ -10909,24 +10909,24 @@ class JsonSerializable_Case extends _$jni.JObject { r'()[Lcom/github/dart_lang/jnigen/annotations/JsonSerializable$Case;', ); - static final _values = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _values = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `static public com.github.dart_lang.jnigen.annotations.JsonSerializable$Case[] values()` /// The returned object must be released after use, by calling the [release] method. - static _$jni.JArray? values() { - return _values(_class.reference.pointer, _id_values as _$jni.JMethodIDPtr) - .object<_$jni.JArray?>( - const _$jni.JArrayNullableType( + static jni$_.JArray? values() { + return _values(_class.reference.pointer, _id_values as jni$_.JMethodIDPtr) + .object?>( + const jni$_.JArrayNullableType( $JsonSerializable_Case$NullableType())); } @@ -10935,24 +10935,24 @@ class JsonSerializable_Case extends _$jni.JObject { r'(Ljava/lang/String;)Lcom/github/dart_lang/jnigen/annotations/JsonSerializable$Case;', ); - static final _valueOf = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, - _$jni.VarArgs<(_$jni.Pointer<_$jni.Void>,)>)>>( + static final _valueOf = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, + jni$_.VarArgs<(jni$_.Pointer,)>)>>( 'globalEnv_CallStaticObjectMethod') .asFunction< - _$jni.JniResult Function(_$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, _$jni.Pointer<_$jni.Void>)>(); + jni$_.JniResult Function(jni$_.Pointer, + jni$_.JMethodIDPtr, jni$_.Pointer)>(); /// from: `static public com.github.dart_lang.jnigen.annotations.JsonSerializable$Case valueOf(java.lang.String string)` /// The returned object must be released after use, by calling the [release] method. static JsonSerializable_Case? valueOf( - _$jni.JString? string, + jni$_.JString? string, ) { - final _$string = string?.reference ?? _$jni.jNullReference; - return _valueOf(_class.reference.pointer, _id_valueOf as _$jni.JMethodIDPtr, + final _$string = string?.reference ?? jni$_.jNullReference; + return _valueOf(_class.reference.pointer, _id_valueOf as jni$_.JMethodIDPtr, _$string.pointer) .object( const $JsonSerializable_Case$NullableType()); @@ -10960,39 +10960,39 @@ class JsonSerializable_Case extends _$jni.JObject { } final class $JsonSerializable_Case$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonSerializable_Case$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/JsonSerializable$Case;'; - @_$jni.internal - @_$core.override - JsonSerializable_Case? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonSerializable_Case? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonSerializable_Case.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonSerializable_Case$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonSerializable_Case$NullableType) && other is $JsonSerializable_Case$NullableType; @@ -11000,38 +11000,38 @@ final class $JsonSerializable_Case$NullableType } final class $JsonSerializable_Case$Type - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonSerializable_Case$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/JsonSerializable$Case;'; - @_$jni.internal - @_$core.override - JsonSerializable_Case fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonSerializable_Case fromReference(jni$_.JReference reference) => JsonSerializable_Case.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonSerializable_Case$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonSerializable_Case$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonSerializable_Case$Type) && other is $JsonSerializable_Case$Type; @@ -11039,18 +11039,18 @@ final class $JsonSerializable_Case$Type } /// from: `com.github.dart_lang.jnigen.annotations.JsonSerializable` -class JsonSerializable extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class JsonSerializable extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal JsonSerializable.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/annotations/JsonSerializable'); /// The type which includes information such as the signature of this class. @@ -11061,36 +11061,36 @@ class JsonSerializable extends _$jni.JObject { r'()Lcom/github/dart_lang/jnigen/annotations/JsonSerializable$Case;', ); - static final _value = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _value = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_CallObjectMethod') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public abstract com.github.dart_lang.jnigen.annotations.JsonSerializable$Case value()` /// The returned object must be released after use, by calling the [release] method. JsonSerializable_Case? value() { - return _value(reference.pointer, _id_value as _$jni.JMethodIDPtr) + return _value(reference.pointer, _id_value as jni$_.JMethodIDPtr) .object( const $JsonSerializable_Case$NullableType()); } /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -11098,15 +11098,15 @@ class JsonSerializable extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); @@ -11114,32 +11114,32 @@ class JsonSerializable extends _$jni.JObject { if ($d == r'value()Lcom/github/dart_lang/jnigen/annotations/JsonSerializable$Case;') { final $r = _$impls[$p]!.value(); - return ($r as _$jni.JObject?) - ?.as(const _$jni.JObjectType()) + return ($r as jni$_.JObject?) + ?.as(const jni$_.JObjectType()) .reference .toPointer() ?? - _$jni.nullptr; + jni$_.nullptr; } } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $JsonSerializable $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.annotations.JsonSerializable', @@ -11154,7 +11154,7 @@ class JsonSerializable extends _$jni.JObject { factory JsonSerializable.implement( $JsonSerializable $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return JsonSerializable.fromReference( $i.implementReference(), @@ -11183,77 +11183,77 @@ final class _$JsonSerializable with $JsonSerializable { } final class $JsonSerializable$NullableType - extends _$jni.JObjType { - @_$jni.internal + extends jni$_.JObjType { + @jni$_.internal const $JsonSerializable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/JsonSerializable;'; - @_$jni.internal - @_$core.override - JsonSerializable? fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonSerializable? fromReference(jni$_.JReference reference) => reference.isNull ? null : JsonSerializable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonSerializable$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonSerializable$NullableType) && other is $JsonSerializable$NullableType; } } -final class $JsonSerializable$Type extends _$jni.JObjType { - @_$jni.internal +final class $JsonSerializable$Type extends jni$_.JObjType { + @jni$_.internal const $JsonSerializable$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/JsonSerializable;'; - @_$jni.internal - @_$core.override - JsonSerializable fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + JsonSerializable fromReference(jni$_.JReference reference) => JsonSerializable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $JsonSerializable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($JsonSerializable$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($JsonSerializable$Type) && other is $JsonSerializable$Type; @@ -11261,18 +11261,18 @@ final class $JsonSerializable$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.annotations.MyDataClass` -class MyDataClass extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class MyDataClass extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal MyDataClass.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); - static final _class = _$jni.JClass.forName( + static final _class = jni$_.JClass.forName( r'com/github/dart_lang/jnigen/annotations/MyDataClass'); /// The type which includes information such as the signature of this class. @@ -11282,97 +11282,97 @@ class MyDataClass extends _$jni.JObject { r'()V', ); - static final _new$ = _$jni.ProtectedJniExtensions.lookup< - _$jni.NativeFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + static final _new$ = jni$_.ProtectedJniExtensions.lookup< + jni$_.NativeFunction< + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>>('globalEnv_NewObject') .asFunction< - _$jni.JniResult Function( - _$jni.Pointer<_$jni.Void>, - _$jni.JMethodIDPtr, + jni$_.JniResult Function( + jni$_.Pointer, + jni$_.JMethodIDPtr, )>(); /// from: `public void ()` /// The returned object must be released after use, by calling the [release] method. factory MyDataClass() { return MyDataClass.fromReference( - _new$(_class.reference.pointer, _id_new$ as _$jni.JMethodIDPtr) + _new$(_class.reference.pointer, _id_new$ as jni$_.JMethodIDPtr) .reference); } } -final class $MyDataClass$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $MyDataClass$NullableType extends jni$_.JObjType { + @jni$_.internal const $MyDataClass$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/MyDataClass;'; - @_$jni.internal - @_$core.override - MyDataClass? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + MyDataClass? fromReference(jni$_.JReference reference) => reference.isNull ? null : MyDataClass.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyDataClass$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyDataClass$NullableType) && other is $MyDataClass$NullableType; } } -final class $MyDataClass$Type extends _$jni.JObjType { - @_$jni.internal +final class $MyDataClass$Type extends jni$_.JObjType { + @jni$_.internal const $MyDataClass$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/MyDataClass;'; - @_$jni.internal - @_$core.override - MyDataClass fromReference(_$jni.JReference reference) => + @jni$_.internal + @core$_.override + MyDataClass fromReference(jni$_.JReference reference) => MyDataClass.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $MyDataClass$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($MyDataClass$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($MyDataClass$Type) && other is $MyDataClass$Type; @@ -11380,34 +11380,34 @@ final class $MyDataClass$Type extends _$jni.JObjType { } /// from: `com.github.dart_lang.jnigen.annotations.NotNull` -class NotNull extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class NotNull extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal NotNull.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/annotations/NotNull'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/annotations/NotNull'); /// The type which includes information such as the signature of this class. static const nullableType = $NotNull$NullableType(); static const type = $NotNull$Type(); /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -11415,39 +11415,39 @@ class NotNull extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $NotNull $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.annotations.NotNull', @@ -11462,7 +11462,7 @@ class NotNull extends _$jni.JObject { factory NotNull.implement( $NotNull $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return NotNull.fromReference( $i.implementReference(), @@ -11478,106 +11478,106 @@ final class _$NotNull with $NotNull { _$NotNull(); } -final class $NotNull$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $NotNull$NullableType extends jni$_.JObjType { + @jni$_.internal const $NotNull$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/NotNull;'; - @_$jni.internal - @_$core.override - NotNull? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + NotNull? fromReference(jni$_.JReference reference) => reference.isNull ? null : NotNull.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($NotNull$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($NotNull$NullableType) && other is $NotNull$NullableType; } } -final class $NotNull$Type extends _$jni.JObjType { - @_$jni.internal +final class $NotNull$Type extends jni$_.JObjType { + @jni$_.internal const $NotNull$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/NotNull;'; - @_$jni.internal - @_$core.override - NotNull fromReference(_$jni.JReference reference) => NotNull.fromReference( + @jni$_.internal + @core$_.override + NotNull fromReference(jni$_.JReference reference) => NotNull.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $NotNull$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $NotNull$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($NotNull$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($NotNull$Type) && other is $NotNull$Type; } } /// from: `com.github.dart_lang.jnigen.annotations.Nullable` -class Nullable extends _$jni.JObject { - @_$jni.internal - @_$core.override - final _$jni.JObjType $type; +class Nullable extends jni$_.JObject { + @jni$_.internal + @core$_.override + final jni$_.JObjType $type; - @_$jni.internal + @jni$_.internal Nullable.fromReference( - _$jni.JReference reference, + jni$_.JReference reference, ) : $type = type, super.fromReference(reference); static final _class = - _$jni.JClass.forName(r'com/github/dart_lang/jnigen/annotations/Nullable'); + jni$_.JClass.forName(r'com/github/dart_lang/jnigen/annotations/Nullable'); /// The type which includes information such as the signature of this class. static const nullableType = $Nullable$NullableType(); static const type = $Nullable$Type(); /// Maps a specific port to the implemented interface. - static final _$core.Map _$impls = {}; - static _$jni.JObjectPtr _$invoke( + static final core$_.Map _$impls = {}; + static jni$_.JObjectPtr _$invoke( int port, - _$jni.JObjectPtr descriptor, - _$jni.JObjectPtr args, + jni$_.JObjectPtr descriptor, + jni$_.JObjectPtr args, ) { return _$invokeMethod( port, - _$jni.MethodInvocation.fromAddresses( + jni$_.MethodInvocation.fromAddresses( 0, descriptor.address, args.address, @@ -11585,39 +11585,39 @@ class Nullable extends _$jni.JObject { ); } - static final _$jni.Pointer< - _$jni.NativeFunction< - _$jni.JObjectPtr Function( - _$jni.Int64, _$jni.JObjectPtr, _$jni.JObjectPtr)>> - _$invokePointer = _$jni.Pointer.fromFunction(_$invoke); + static final jni$_.Pointer< + jni$_.NativeFunction< + jni$_.JObjectPtr Function( + jni$_.Int64, jni$_.JObjectPtr, jni$_.JObjectPtr)>> + _$invokePointer = jni$_.Pointer.fromFunction(_$invoke); - static _$jni.Pointer<_$jni.Void> _$invokeMethod( + static jni$_.Pointer _$invokeMethod( int $p, - _$jni.MethodInvocation $i, + jni$_.MethodInvocation $i, ) { try { final $d = $i.methodDescriptor.toDartString(releaseOriginal: true); final $a = $i.args; } catch (e) { - return _$jni.ProtectedJniExtensions.newDartException(e); + return jni$_.ProtectedJniExtensions.newDartException(e); } - return _$jni.nullptr; + return jni$_.nullptr; } static void implementIn( - _$jni.JImplementer implementer, + jni$_.JImplementer implementer, $Nullable $impl, ) { - late final _$jni.RawReceivePort $p; - $p = _$jni.RawReceivePort(($m) { + late final jni$_.RawReceivePort $p; + $p = jni$_.RawReceivePort(($m) { if ($m == null) { _$impls.remove($p.sendPort.nativePort); $p.close(); return; } - final $i = _$jni.MethodInvocation.fromMessage($m); + final $i = jni$_.MethodInvocation.fromMessage($m); final $r = _$invokeMethod($p.sendPort.nativePort, $i); - _$jni.ProtectedJniExtensions.returnResult($i.result, $r); + jni$_.ProtectedJniExtensions.returnResult($i.result, $r); }); implementer.add( r'com.github.dart_lang.jnigen.annotations.Nullable', @@ -11632,7 +11632,7 @@ class Nullable extends _$jni.JObject { factory Nullable.implement( $Nullable $impl, ) { - final $i = _$jni.JImplementer(); + final $i = jni$_.JImplementer(); implementIn($i, $impl); return Nullable.fromReference( $i.implementReference(), @@ -11648,72 +11648,72 @@ final class _$Nullable with $Nullable { _$Nullable(); } -final class $Nullable$NullableType extends _$jni.JObjType { - @_$jni.internal +final class $Nullable$NullableType extends jni$_.JObjType { + @jni$_.internal const $Nullable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/Nullable;'; - @_$jni.internal - @_$core.override - Nullable? fromReference(_$jni.JReference reference) => reference.isNull + @jni$_.internal + @core$_.override + Nullable? fromReference(jni$_.JReference reference) => reference.isNull ? null : Nullable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => this; + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => this; - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Nullable$NullableType).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Nullable$NullableType) && other is $Nullable$NullableType; } } -final class $Nullable$Type extends _$jni.JObjType { - @_$jni.internal +final class $Nullable$Type extends jni$_.JObjType { + @jni$_.internal const $Nullable$Type(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override String get signature => r'Lcom/github/dart_lang/jnigen/annotations/Nullable;'; - @_$jni.internal - @_$core.override - Nullable fromReference(_$jni.JReference reference) => Nullable.fromReference( + @jni$_.internal + @core$_.override + Nullable fromReference(jni$_.JReference reference) => Nullable.fromReference( reference, ); - @_$jni.internal - @_$core.override - _$jni.JObjType get superType => const _$jni.JObjectNullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get superType => const jni$_.JObjectNullableType(); - @_$jni.internal - @_$core.override - _$jni.JObjType get nullableType => const $Nullable$NullableType(); + @jni$_.internal + @core$_.override + jni$_.JObjType get nullableType => const $Nullable$NullableType(); - @_$jni.internal - @_$core.override + @jni$_.internal + @core$_.override final superCount = 1; - @_$core.override + @core$_.override int get hashCode => ($Nullable$Type).hashCode; - @_$core.override + @core$_.override bool operator ==(Object other) { return other.runtimeType == ($Nullable$Type) && other is $Nullable$Type; } diff --git a/pkgs/jnigen/test/simple_package_test/generate.dart b/pkgs/jnigen/test/simple_package_test/generate.dart index 05595f7b9..96b692adc 100644 --- a/pkgs/jnigen/test/simple_package_test/generate.dart +++ b/pkgs/jnigen/test/simple_package_test/generate.dart @@ -85,10 +85,10 @@ Config getConfig() { nullableAnnotations: ['com.github.dart_lang.jnigen.annotations.Nullable'], customClassBody: { 'com.github.dart_lang.jnigen.interfaces.MyInterface': r''' - static _$core.Map get $impls => _$impls; + static core$_.Map get $impls => _$impls; ''', 'com.github.dart_lang.jnigen.interfaces.MyRunnable': r''' - static _$core.Map get $impls => _$impls; + static core$_.Map get $impls => _$impls; ''' }, outputConfig: OutputConfig(