Package gri.tasks.gui

Examples of gri.tasks.gui.TestShell


      e.printStackTrace();
      return;
    }

    //run shell:
    TestShell shell = new TestShell();

    gridp.CustomInputWidgetFactory typedInFactory = new gridp.CustomInputWidgetFactory();
    gridp.CustomOutputWidgetFactory typedOutFactory = new gridp.CustomOutputWidgetFactory(viewManager);
    shell.setInputWidgetFactory(new InputParameterWidgetFactory(typedInFactory));
    shell.setOutputWidgetFactory(new OutputParameterWidgetFactory(typedOutFactory));

    shell.runTest(jobManagers);


    //new gri.tasks.gui.icons.TestShell().runTest(jobManagers);
  }
View Full Code Here


    catch(Exception e) {
      e.printStackTrace();
      return;
    }

    TestShell shell = new TestShell();

    CustomInputWidgetFactory typedInFactory = new CustomInputWidgetFactory();
    CustomOutputWidgetFactory typedOutFactory = new CustomOutputWidgetFactory(viewManager);
    shell.setInputWidgetFactory(new InputParameterWidgetFactory(typedInFactory));
    shell.setOutputWidgetFactory(new OutputParameterWidgetFactory(typedOutFactory));

    shell.runTest(jobManager);
  }
View Full Code Here

TOP

Related Classes of gri.tasks.gui.TestShell

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.