Package org.tuba.integration

Examples of org.tuba.integration.IntegrationJob.join()


    if (doIntegration) {
      IntegrationJob job = new IntegrationJob(document);
      job.setUser(true);
      job.schedule();
      try {
        job.join();
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      if (job.getResult().isOK())
        document.setModified(true);
View Full Code Here


  private void integrateArtefacts(ITutorialDocument document) {
    IntegrationJob job = new IntegrationJob(document);
    job.setSystem(true);
    job.schedule();
    try {
      job.join();
    } catch (InterruptedException e1) {
      // TODO Auto-generated catch block
      e1.printStackTrace();
    }
    document.setModified(false);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.