goog.module('genericanddefaultmethods.InterfaceWithDefault$impl');

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

let System = goog.forwardDeclare('java.lang.System$impl');

/**
 * @interface
 */
class InterfaceWithDefault {
 /** @abstract @nodts */
 m_foo__java_lang_String__void(/** ?string */ value) {}
 /** @nodts */
 static m_foo__$default__genericanddefaultmethods_InterfaceWithDefault__java_lang_String__void(/** !InterfaceWithDefault */ $thisArg, /** ?string */ value) {
  InterfaceWithDefault.$clinit();
  System.f_out__java_lang_System.m_println__java_lang_String__void('in InterfaceWithDefault');
 }
 /** @nodts */
 static $clinit() {
  InterfaceWithDefault.$clinit = () =>{};
  InterfaceWithDefault.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__genericanddefaultmethods_InterfaceWithDefault = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__genericanddefaultmethods_InterfaceWithDefault;
 }
 
 /** @nodts */
 static $loadModules() {
  System = goog.module.get('java.lang.System$impl');
 }
}
InterfaceWithDefault.$markImplementor(/**@type {Function}*/ (InterfaceWithDefault));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (InterfaceWithDefault), 'genericanddefaultmethods.InterfaceWithDefault');

exports = InterfaceWithDefault;

//# sourceMappingURL=InterfaceWithDefault.js.map
