Package net.sourceforge.ganttproject.gui

Examples of net.sourceforge.ganttproject.gui.GanttDialogProperties


  protected void run(List/*<Task>*/ selection) throws Exception {
        if (selection.size()!=1) {
            return;
        }
    final GanttTask[] tasks = new GanttTask[] {(GanttTask)selection.get(0)};
        GanttDialogProperties pd = new GanttDialogProperties(tasks);
        mySelectionManager.setUserInputConsumer(pd);
        pd.show(myProject, getUIFacade());
        if (pd.change) {
            myProject.setModified(true);
//            setRowHeight(rowHeight);
//            getResourcePanel().getResourceTreeTableModel()
//                    .updateResources();
View Full Code Here

TOP

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

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.