goog.module('bridgemethods.BridgeMethod$impl');

const Parent = goog.require('bridgemethods.Parent$impl');
const SomeInterface = goog.require('bridgemethods.SomeInterface$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

let AssertionError = goog.forwardDeclare('java.lang.AssertionError$impl');
let Number = goog.forwardDeclare('java.lang.Number$impl');
let $Casts = goog.forwardDeclare('vmbootstrap.Casts$impl');

/**
 * @final
 * @extends {Parent<AssertionError>}
 * @implements {SomeInterface<AssertionError, (Number|number)>}
 */
class BridgeMethod extends Parent {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @return {!BridgeMethod} */
 static $create__() {
  BridgeMethod.$clinit();
  let $instance = new BridgeMethod();
  $instance.$ctor__bridgemethods_BridgeMethod__void();
  return $instance;
 }
 /** @nodts */
 $ctor__bridgemethods_BridgeMethod__void() {
  this.$ctor__bridgemethods_Parent__void();
 }
 /** @nodts */
 m_foo__java_lang_AssertionError__java_lang_Number__void(/** AssertionError */ a, /** (Number|number) */ n) {}
 /** @final @nodts */
 m_fun__java_lang_Number__void(/** (Number|number) */ t) {}
 //Bridge method.
 /** @final @override @nodts @suppress{visibility} */
 m_foo__java_lang_Object__java_lang_Number__void(/** AssertionError */ arg0, /** (Number|number) */ arg1) {
  this.m_foo__java_lang_AssertionError__java_lang_Number__void(/**@type {AssertionError}*/ ($Casts.$to(arg0, AssertionError)), arg1);
 }
 //Bridge method.
 /** @final @override @nodts @suppress{visibility} */
 m_foo__java_lang_Error__java_lang_Number__void(/** AssertionError */ arg0, /** (Number|number) */ arg1) {
  this.m_foo__java_lang_AssertionError__java_lang_Number__void(/**@type {AssertionError}*/ ($Casts.$to(arg0, AssertionError)), arg1);
 }
 /** @nodts */
 static $clinit() {
  BridgeMethod.$clinit = () =>{};
  BridgeMethod.$loadModules();
  Parent.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof BridgeMethod;
 }
 
 /** @nodts */
 static $loadModules() {
  AssertionError = goog.module.get('java.lang.AssertionError$impl');
  $Casts = goog.module.get('vmbootstrap.Casts$impl');
 }
}
SomeInterface.$markImplementor(BridgeMethod);
$Util.$setClassMetadata(BridgeMethod, 'bridgemethods.BridgeMethod');

exports = BridgeMethod;

//# sourceMappingURL=BridgeMethod.js.map
