var Form = Namespace.declare("com.twitter.Bootstrap",
  class Form extends UcpComponent {
    static get implements() {
      return [];
    }
    static get overwriteServerDescriptor() { return true; }
    static get weBeanUnitPaths() {
      return [
        "src/html/weBeans/Form.weBean.html"
      ];
    }
    static start() {
    }

    static get dependencies() {
      return [
        "/EAMD.ucp/Components/com/twitter/Bootstrap/3.3.7/Bootstrap.component.xml"
      ];
    }

    constructor() {
      super();
      this.classes = "";
      this.fullHeight = true;
      this.overflow = "hidden";
      Thinglish.defineAlias(this, "classes", "cssClasses");
    }

    init() {
      if (this._private.isInitialized) {
        return;
      }
      super.init();
      return this;
    }

  }
);