Examples of BundleResolution


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
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.