Package net.sourceforge.ganttproject.gui

Examples of net.sourceforge.ganttproject.gui.GanttDialogPublicHoliday


    public void actionPerformed(ActionEvent arg0) {

        // myUIFacade.showDialog(createDialogComponent(), new Action[]{okAction,
        // cancelAction});
        final GanttDialogPublicHoliday dialog = new GanttDialogPublicHoliday(
                myProject, myUIFacade);
        Component dialogContent = dialog.getContentPane();
        myUIFacade.showDialog(dialogContent, new Action[] {
                new OkAction() {
                    public void actionPerformed(ActionEvent e) {
                        updateHolidays(dialog.getHolidays());
                    }
           
                },
                new CancelAction() {
                    public void actionPerformed(ActionEvent e) {
View Full Code Here

TOP

Related Classes of net.sourceforge.ganttproject.gui.GanttDialogPublicHoliday

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.