Package net.sourceforge.processdash.ev.ui

Examples of net.sourceforge.processdash.ev.ui.TaskScheduleChooser


    private static void showTaskScheduleImpl(String path) {

        // if no path was given, just display a chooser dialog to the user.
        if (path == null || path.length() == 0) {
            raiseWindowImpl();
            new TaskScheduleChooser(dash);
            return;
        }

        List taskLists = EVTaskList.getPreferredTaskListsForPath(dash.data,
                path);

        raiseWindowImpl();
        if (taskLists.size() == 1)
            TaskScheduleChooser.open(dash, (String) taskLists.get(0));
        else
            new TaskScheduleChooser
                (dash, (String[]) taskLists.toArray(new String[0]));
    }
View Full Code Here


  public void startTaskDialog() {
    if (parent.getProperties() != null) {
      if (task_chooser != null && task_chooser.isDisplayable())
        task_chooser.toFront();
      else
        task_chooser = new TaskScheduleChooser(parent);
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.ev.ui.TaskScheduleChooser

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.