Package event_manager.views.panels

Examples of event_manager.views.panels.ListPanel


    private void newTab(final String panelName, int panelId) {
        Component panel = null;
        switch(panelId) {
            case ViewHelper.LIST_EVENT:
                panel = new ListPanel(new EventsController(), new Event(), this);
                break;
            case ViewHelper.LIST_STAFF:
                panel = new ListPanel(new StaffsController(), new Staff(), this);
                break;
            case ViewHelper.LIST_CLIENT:
                panel = new ListPanel(new ClientsController(), new Client(), this);
                break;
            default:
                ViewHelper.showDialog("I don't know that panel");
        }
        mainTabbedPane.add(panel);
View Full Code Here

TOP

Related Classes of event_manager.views.panels.ListPanel

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.