Package org.tuba.integration

Examples of org.tuba.integration.IntegrationJob


      if (editorConnector.insertTag(document, artefactTag.toString()))
        doIntegration = true;
    }

    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


  // job.setUser(true);
  // job.schedule();
  // }

  private static void integrateArtefacts(ITutorialDocument document) {
    IntegrationJob job = new IntegrationJob(document);
    job.setUser(true);
    job.schedule();
  }
View Full Code Here

  // }
  // return document;
  // }

  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

Related Classes of org.tuba.integration.IntegrationJob

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.