goog.module('annotation.Main.Zoo$impl');

const Annotation = goog.require('java.lang.annotation.Annotation$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

/**
 * @interface
 * @extends {Annotation}
 */
class Zoo {
 /** @nodts */
 static $clinit() {
  Zoo.$clinit = () =>{};
  Zoo.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  Annotation.$markImplementor(ctor);
  ctor.prototype.$implements__annotation_Main_Zoo = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__annotation_Main_Zoo;
 }
 
 /** @nodts */
 static $loadModules() {}
}
Zoo.$markImplementor(/**@type {Function}*/ (Zoo));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (Zoo), 'annotation.Main$Zoo');

exports = Zoo;

//# sourceMappingURL=Main$Zoo.js.map
