goog.module('accidentaloverride.SuperInterface$impl');

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

/**
 * @interface
 * @template T
 */
class SuperInterface {
 /** @abstract @nodts */
 m_foo__java_lang_Object__void(/** T */ t) {}
 /** @abstract @nodts */
 m_bar__java_lang_Object__void(/** T */ e) {}
 /** @nodts */
 static $clinit() {
  SuperInterface.$clinit = () =>{};
  SuperInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__accidentaloverride_SuperInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__accidentaloverride_SuperInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
SuperInterface.$markImplementor(/**@type {Function}*/ (SuperInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (SuperInterface), 'accidentaloverride.SuperInterface');

exports = SuperInterface;

//# sourceMappingURL=SuperInterface.js.map
