Package org.brixcms.web.tab

Examples of org.brixcms.web.tab.AbstractBrixTab


                               final SimpleCallback back) {
        super(id, container);

        ArrayList<ITab> tabs = new ArrayList<ITab>();

        tabs.add(new AbstractBrixTab(new ResourceModel("upload")) {
            @Override
            public Panel getPanel(String panelId) {
                return new UploadResourcesPanel(panelId, container, back);
            }
        });

        tabs.add(new AbstractBrixTab(new ResourceModel("createText")) {
            @Override
            public Panel getPanel(String panelId) {
                return new CreateTextResourcePanel(panelId, container, back);
            }
        });
View Full Code Here

TOP

Related Classes of org.brixcms.web.tab.AbstractBrixTab

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.