goog.module('genericinterfaceabstractimpl.MyInterface$impl');

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

/**
 * @interface
 * @template T
 */
class MyInterface {
 /** @abstract @nodts @return {T} */
 m_fun__java_lang_Object__java_lang_Object(/** T */ t) {}
 /** @abstract @nodts @template T_1 */
 m_g__java_lang_Object__void(/** T_1 */ t) {}
 /** @nodts */
 static $clinit() {
  MyInterface.$clinit = () =>{};
  MyInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__genericinterfaceabstractimpl_MyInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__genericinterfaceabstractimpl_MyInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
MyInterface.$markImplementor(/**@type {Function}*/ (MyInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (MyInterface), 'genericinterfaceabstractimpl.MyInterface');

exports = MyInterface;

//# sourceMappingURL=MyInterface.js.map
