goog.module('objectclass.InterfaceType$impl');

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

/**
 * @interface
 */
class InterfaceType {
 /** @abstract @nodts @return {string} */
 m_doSomething__java_lang_String() {}
 /** @nodts */
 static $clinit() {
  InterfaceType.$clinit = () =>{};
  InterfaceType.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__objectclass_InterfaceType = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__objectclass_InterfaceType;
 }
 
 /** @nodts */
 static $loadModules() {}
}
InterfaceType.$markImplementor(/**@type {Function}*/ (InterfaceType));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (InterfaceType), 'objectclass.InterfaceType');

exports = InterfaceType;

//# sourceMappingURL=InterfaceType.js.map
