goog.module('implementsgenericinterface.GenericInterfaceGenericImpl$impl');

const GenericInterface = goog.require('implementsgenericinterface.GenericInterface$impl');
const j_l_Object = goog.require('java.lang.Object$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

/**
 * @template T
 * @implements {GenericInterface<T>}
 */
class GenericInterfaceGenericImpl extends j_l_Object {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @template T @return {!GenericInterfaceGenericImpl<T>} */
 static $create__() {
  GenericInterfaceGenericImpl.$clinit();
  let $instance = new GenericInterfaceGenericImpl();
  $instance.$ctor__implementsgenericinterface_GenericInterfaceGenericImpl__void();
  return $instance;
 }
 /** @nodts */
 $ctor__implementsgenericinterface_GenericInterfaceGenericImpl__void() {
  this.$ctor__java_lang_Object__void();
 }
 /** @nodts */
 static $clinit() {
  GenericInterfaceGenericImpl.$clinit = () =>{};
  GenericInterfaceGenericImpl.$loadModules();
  j_l_Object.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof GenericInterfaceGenericImpl;
 }
 
 /** @nodts */
 static $loadModules() {}
}
GenericInterface.$markImplementor(GenericInterfaceGenericImpl);
$Util.$setClassMetadata(GenericInterfaceGenericImpl, 'implementsgenericinterface.GenericInterfaceGenericImpl');

exports = GenericInterfaceGenericImpl;

//# sourceMappingURL=GenericInterfaceGenericImpl.js.map
