goog.module('nullability.defaultnotnullable.DefaultNotNullable.ParameterizedInterface$impl');

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

/**
 * @interface
 * @template T
 */
class ParameterizedInterface {
 /** @abstract @nodts @return {T} */
 m_add__java_lang_Object__java_lang_Object(/** T */ t) {}
 /** @abstract @nodts @return {?T} */
 m_nullableAdd__java_lang_Object__java_lang_Object(/** ?T */ t) {}
 /** @nodts */
 static $clinit() {
  ParameterizedInterface.$clinit = () =>{};
  ParameterizedInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__nullability_defaultnotnullable_DefaultNotNullable_ParameterizedInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__nullability_defaultnotnullable_DefaultNotNullable_ParameterizedInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
ParameterizedInterface.$markImplementor(/**@type {Function}*/ (ParameterizedInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (ParameterizedInterface), 'nullability.defaultnotnullable.DefaultNotNullable$ParameterizedInterface');

exports = ParameterizedInterface;

//# sourceMappingURL=DefaultNotNullable$ParameterizedInterface.js.map
