Package gri.tasks.gui

Examples of gri.tasks.gui.TaskInfo


    }

    public void valueChanged(ListSelectionEvent e) {
      int index = e.getFirstIndex();

      TaskInfo taskInfo = parent.taskListPanel.getTask(index);
      parent.infoPanel.setTask(taskInfo);

      parent.inputPanels.showPanel(index);
    }
View Full Code Here


    protected List getTaskInfoList(JobManager jobManager) {
      List list = new ArrayList();

      String [] taskIds = jobManager.getTaskIds();
      for (int i=0; i<taskIds.length; i++)
        list.add(new TaskInfo(jobManager, taskIds[i]));

      return list;
    }
View Full Code Here

TOP

Related Classes of gri.tasks.gui.TaskInfo

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.