Package com.apress.progwt.client.college.gui.ext

Examples of com.apress.progwt.client.college.gui.ext.ContextMenu


     * callback to addProcess(ProcessType,Date) when selected.
     */
    public void addProcess(Date date, int x, int y) {
        Log.debug("AddProcess(date only) " + date);

        final ContextMenu menu = new ContextMenu(x, y);

        ProcessTypePanel typePanel = new ProcessTypePanel(date,
                new ClickListener() {
                    public void onClick(Widget sender) {
                        menu.hide();
                    }
                });
        typePanel.load(lastUser);

        menu.clear();
        menu.setWidget(typePanel);
        menu.show();
    }
View Full Code Here

TOP

Related Classes of com.apress.progwt.client.college.gui.ext.ContextMenu

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.