Package gri.tasks.gui.util

Examples of gri.tasks.gui.util.JobList


      this.taskFrame = taskFrame;
      this.taskPanel = taskFrame.panel;
    }

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

      closeWindow();
    }
View Full Code Here


    JFrame frame = new JFrame("Test");

    //actions:
    //Action exitAction = new ExitAction();
    JobList unmanagedJobs = new JobList();
    Action exitAction = new SafeExitAction(frame, unmanagedJobs);

    //prepare panel:
    ExtendedIconSelectPanel panel = new ExtendedIconSelectPanel(iconManager);
View Full Code Here

TOP

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

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.