var DefaultItem = Namespace.declare("com.twitter.Bootstrap",
    class DefaultItem extends UcpComponent {
        static start() {
        }
        static dependencies() {
            return [
                "/EAMD.ucp/Components/com/twitter/Bootstrap/3.3.7-Once/Bootstrap.component.xml"
            ];
        }


        constructor() {
            super();
        }

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

    }
);


