Package gri.tasks.gui.util

Examples of gri.tasks.gui.util.CloseJobsDialog


      this.taskPanel = taskFrame.panel;
    }

    public void actionPerformed(ActionEvent e) {
      JobList jobs = taskPanel.getManagedTasks();
      new CloseJobsDialog(taskPanel).run(jobs);

      closeWindow();
    }
View Full Code Here


      this.parent = parent;
      this.jobs = jobs;
    }

    public void actionPerformed(ActionEvent e) {
      new CloseJobsDialog(parent).run(jobs);
      System.exit(0);
    }
View Full Code Here

TOP

Related Classes of gri.tasks.gui.util.CloseJobsDialog

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.