var Accordion = Namespace.declare("com.twitter.Bootstrap",
    class Accordion extends UcpComponent {
        static get implements() { return []; };
        static start() {}
        static get dependencies() {
            return [
                "/EAMD.ucp/Components/com/twitter/Bootstrap/3.3.7/Bootstrap.component.xml",
                "/EAMD.ucp/Components/com/twitter/Bootstrap/Accordion/CollapsiblePanel/1.0.0/CollapsiblePanel.component.xml"
            ];
        }


        constructor() {
            super();
            this.cssClasses = "col-sm-12";


        }

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

        /* createDefaultView() {
            return new AccordionDefaultView();
        }
        */
        get container() {
            return this.documentElement;
        }

    }
);

/* var AccordionDefaultView = Namespace.declare("com.twitter.Bootstrap.Accordion",
    class AccordionDefaultView extends UcpView {

        append(element) {
            super.append(element);
            this.ucpComponent.add(CollapsiblePanel.getInstance());
        }

    }
); */