goog.module('jstypewithdefault.SomeJsType$impl');

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

/**
 * @final
 * @implements {Interface}
 */
class SomeJsType extends j_l_Object {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @return {!SomeJsType} */
 static $create__() {
  SomeJsType.$clinit();
  let $instance = new SomeJsType();
  $instance.$ctor__jstypewithdefault_SomeJsType__void();
  return $instance;
 }
 /** @nodts */
 $ctor__jstypewithdefault_SomeJsType__void() {
  this.$ctor__java_lang_Object__void();
 }
 //Default method forwarding stub.
 /** @override @suppress{visibility} */
 defaultMethod() {
  Interface.m_defaultMethod__$default__jstypewithdefault_Interface__void(this);
 }
 /** @nodts */
 static $clinit() {
  SomeJsType.$clinit = () =>{};
  SomeJsType.$loadModules();
  j_l_Object.$clinit();
  Interface.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof SomeJsType;
 }
 
 /** @nodts */
 static $loadModules() {}
}
Interface.$markImplementor(SomeJsType);
$Util.$setClassMetadata(SomeJsType, 'jstypewithdefault.SomeJsType');

exports = SomeJsType;

//# sourceMappingURL=SomeJsType.js.map
