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


        constructor() {
            super();
        }

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

    }
);


