Package dtool.engine

Examples of dtool.engine.BundleResolution


    doCodeCompletion(file, 0, results);
  }
 
  protected void checkModuleExists(IFile file, String moduleName, boolean exists) {
    BundlePath bundlePath = BundlePath.create(file.getProject().getLocation().toFile().toPath());
    BundleResolution sr;
    try {
      sr = client.getServerSemanticManager().getUpdatedResolution(bundlePath);
    } catch (ExecutionException e) {
      throw melnorme.utilbox.core.ExceptionAdapter.unchecked(e);
    }
    HashSet<String> modules = sr.findModules(moduleName);
    assertTrue(modules.contains(moduleName) == exists);
  }
View Full Code Here

TOP

Related Classes of dtool.engine.BundleResolution

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.