Package gri.tasks.gui

Examples of gri.tasks.gui.TaskInputPanel


  /**
   * Displays an input panel for the task as the first
   * tab.
   */
  protected void displayInputTab() {
    inputPanel = new TaskInputPanel(
        taskInfo.getTaskDescription(),
        taskInfo.getTaskDefinition().getInputsArray(),
        inputWidgetFactory);

    inputPanel.addExecutionListener(new ActionListener() {
View Full Code Here


    System.out.println(jobEntry.getJobId());
    System.out.println(jobEntry.getTaskDescription());
   
    //display output panel:
    outputPanel = new TaskInputPanel(
        jobEntry.getTaskDescription(),
        jobEntry.getTaskDef().getOutputsArray(),
        widgetFactory,
        false);
View Full Code Here

TOP

Related Classes of gri.tasks.gui.TaskInputPanel

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.